| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <head> | |
| 3 | |
| 4 <style> | |
| 5 .editing { | |
| 6 border: 2px solid red; | |
| 7 font-size: 24px; | |
| 8 } | |
| 9 .explanation { | |
| 10 border: 2px solid blue; | |
| 11 padding: 12px; | |
| 12 font-size: 24px; | |
| 13 margin-bottom: 24px; | |
| 14 } | |
| 15 .scenario { margin-bottom: 16px;} | |
| 16 .scenario:first-line { font-weight: bold; margin-bottom: 16px;} | |
| 17 .expected-results:first-line { font-weight: bold } | |
| 18 </style> | |
| 19 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script
> | |
| 20 | |
| 21 <script> | |
| 22 | |
| 23 function editingTest() { | |
| 24 moveSelectionForwardByCharacterCommand(); | |
| 25 typeCharacterCommand("b"); | |
| 26 } | |
| 27 | |
| 28 </script> | |
| 29 | |
| 30 <title>Editing Test</title> | |
| 31 </head> | |
| 32 <body> | |
| 33 | |
| 34 <div class="explanation"> | |
| 35 <div class="scenario"> | |
| 36 Tests: | |
| 37 <br> | |
| 38 Style checks performed on boundaries between style changes. | |
| 39 </div> | |
| 40 <div class="expected-results"> | |
| 41 Expected Results: | |
| 42 <br> | |
| 43 Should see this content in the red box below: <b>ab</b>c | |
| 44 </div> | |
| 45 </div> | |
| 46 | |
| 47 <div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: s
pace; -khtml-line-break: after-white-space;"> | |
| 48 <div id="test" class="editing"><b>a</b>c</div> | |
| 49 </div> | |
| 50 | |
| 51 <script> | |
| 52 runEditingTest(); | |
| 53 </script> | |
| 54 | |
| 55 </body> | |
| 56 </html> | |
| OLD | NEW |