| 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 for (i = 0; i < 3; i++) | |
| 25 moveSelectionForwardByCharacterCommand(); | |
| 26 extendSelectionForwardByCharacterCommand(); | |
| 27 copyCommand(); | |
| 28 pasteCommand(); | |
| 29 } | |
| 30 | |
| 31 </script> | |
| 32 | |
| 33 <title>Editing Test</title> | |
| 34 </head> | |
| 35 <body> | |
| 36 | |
| 37 <div class="explanation"> | |
| 38 <div class="scenario"> | |
| 39 Tests: | |
| 40 <br> | |
| 41 Bug fix for <a href="rdar://problem/4038267"><rdar://problem/4038267></a>
REGRESSION (Mail): Crash copying and pasting end of paragraph. | |
| 42 </div> | |
| 43 <div class="expected-results"> | |
| 44 Expected Results: | |
| 45 <br> | |
| 46 Should see this content in the red box below (insertion point must be on the sec
ond line, right before "bar"): <div>foo</div><div>bar</div> | |
| 47 </div> | |
| 48 </div> | |
| 49 | |
| 50 <div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: s
pace; -khtml-line-break: after-white-space;"> | |
| 51 <div id="test" class="editing"> | |
| 52 <div>foo</div><div>bar</div> | |
| 53 </div> | |
| 54 </div> | |
| 55 | |
| 56 <script> | |
| 57 runEditingTest(); | |
| 58 </script> | |
| 59 | |
| 60 </body> | |
| 61 </html> | |
| OLD | NEW |