| 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 moveSelectionForwardByLineCommand(); | |
| 25 extendSelectionForwardByLineCommand(); | |
| 26 cutCommand(); | |
| 27 deleteCommand(); | |
| 28 moveSelectionBackwardByLineCommand(); | |
| 29 moveSelectionForwardByCharacterCommand(); | |
| 30 moveSelectionForwardByCharacterCommand(); | |
| 31 pasteCommand(); | |
| 32 } | |
| 33 | |
| 34 </script> | |
| 35 | |
| 36 <title>Editing Test</title> | |
| 37 </head> | |
| 38 <body> | |
| 39 | |
| 40 <div class="explanation"> | |
| 41 <div class="scenario"> | |
| 42 Tests: | |
| 43 <br> | |
| 44 Pasting black (document default color) text into a block of text with a non-defa
ult color. | |
| 45 </div> | |
| 46 <div class="expected-results"> | |
| 47 Expected Results: | |
| 48 <br> | |
| 49 Should see this content in the red box below: <span style="color: red">ab<span s
tyle="color: black">cde</span>fg</span> | |
| 50 </div> | |
| 51 </div> | |
| 52 | |
| 53 <div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: s
pace; -khtml-line-break: after-white-space;"> | |
| 54 <div id="test" class="editing"> | |
| 55 <span style="color: red">abfg</span> | |
| 56 </div> | |
| 57 <div class="editing"> | |
| 58 cde | |
| 59 </div> | |
| 60 </div> | |
| 61 | |
| 62 <script> | |
| 63 runEditingTest(); | |
| 64 </script> | |
| 65 | |
| 66 </body> | |
| 67 </html> | |
| OLD | NEW |