| .scenario { margin-bottom: 16px;} |
| .scenario:first-line { font-weight: bold; margin-bottom: 16px;} |
| .expected-results:first-line { font-weight: bold } |
| <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script> |
| moveSelectionForwardByLineCommand(); |
| extendSelectionForwardByLineCommand(); |
| extendSelectionForwardByCharacterCommand(); |
| <title>Editing Test</title> |
| <div class="explanation"> |
| Deleting when a selection starts in a blank line created by a BR element and extends to the end of a block. |
| <div class="expected-results"> |
| Should see the three lines in the red box. First line should be "A". Next two lines should be empty. Insertion point should |
| be blinking on the second line (the first blank one). |
| <div contenteditable id="root" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"> |
| <div id="test" class="editing"> |
| <p style="margin-top: 0; margin-bottom: 0">A</p> |
| <p style="margin-top: 0; margin-bottom: 0">A</p> |
| <p style="margin-top: 0; margin-bottom: 0"><BR class="webkit-block-placeholder"></p> |