Changes between Initial Version and Version 2 of Ticket #1996
- Timestamp:
- Mar 19, 2008, 2:10:13 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1996
- Property Keywords Confirmed added; select removed
-
Property
Version
changed from
to
FCKeditor 2.6 Beta
-
Property
Component
changed from
Core : Output Data
toGeneral
-
Property
Summary
changed from
[FF] Insert new line before Select Box, unpredictable behavior.
toInsert new line before Select Box, unpredictable behavior.
-
Ticket #1996 – Description
initial v2 7 7 I've tested this both in 2.6B and nightly build. 8 8 9 Scenario 1. 9 '''Scenario 1''' 10 10 11 1. Create a select box. 11 1. Paste the following HTML: 12 12 13 {{{ 13 14 <p> This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p> 14 15 <form method="get" action="asd" name="asdf"> … … 20 21 </form> 21 22 <p> </p> 23 }}} 22 24 23 2. Place cursor on the line below the select box.24 3. Press up arrow (the cursor will disappear?)25 4. Press Enter25 2. Place cursor on the line below the select box. 26 3. Press up arrow (the cursor will disappear?) 27 4. Press Enter 26 28 27 29 And the code becomes 28 30 31 {{{ 29 32 <p> This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p> 30 33 <form method="get" action="asd" name="asdf"> … … 36 39 </form> 37 40 <p> </p> 41 }}} 38 42 43 '''Scenario 2''' 39 44 45 1. Paste the following HTML: 40 46 41 42 ---- 43 Scenario 2. 44 45 1. Create a new select box. 46 47 {{{ 47 48 <p> This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p> 48 49 <form method="get" action="asd" name="asdf"> … … 54 55 </form> 55 56 <p> </p> 57 }}} 56 58 57 2. Place the cursor below the select box58 3. Press the left arrow. (the cursor will now be at the end of the select box press enter now, and you get a new paragraph expected)59 4. Press the left arrow again. (the cursor will disappear?)60 5. Press enter.59 2. Place the cursor below the select box 60 3. Press the left arrow. (the cursor will now be at the end of the select box press enter now, and you get a new paragraph expected) 61 4. Press the left arrow again. (the cursor will disappear?) 62 5. Press enter. 61 63 62 64 The code becomes 65 66 {{{ 63 67 <p> This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p> 64 68 <form method="get" action="asd" name="asdf"> … … 68 72 </form> 69 73 <p> </p> 74 }}} 70 75 76 '''Scenario 3''' 71 77 72 Scenario 3. 78 1. Paste the following HTML: 73 79 74 1. Create a new select box. 75 80 {{{ 76 81 <p> This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p> 77 82 <form method="get" action="asd" name="asdf"> … … 83 88 </form> 84 89 <p> </p> 90 }}} 85 91 86 2. Place the cursor above the select box87 3. Press the right arrow. (the cursor will disappear?)88 4. Press enter.92 2. Place the cursor above the select box 93 3. Press the right arrow. (the cursor will disappear?) 94 4. Press enter. 89 95 90 96 The code becomes 97 98 {{{ 91 99 '''<p> </p>''' 92 100 <p> This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p> … … 98 106 </form> 99 107 <p> </p> 108 }}}