OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 | |
4 <style> | |
5 .editing { | |
6 border: 2px solid red; | |
7 padding: 12px; | |
8 font-size: 24px; | |
9 word-wrap: break-word; | |
10 -khtml-nbsp-mode: space; | |
11 -khtml-line-break: after-white-space; | |
12 } | |
13 </style> | |
14 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script
> | |
15 | |
16 <script> | |
17 | |
18 function editingTest() { | |
19 for (i = 0; i < 29; i++) | |
20 moveSelectionForwardByCharacterCommand(); | |
21 deleteCommand(); | |
22 } | |
23 | |
24 </script> | |
25 | |
26 <title>Editing Test</title> | |
27 </head> | |
28 <body> | |
29 <div contenteditable id="root" class="editing"> | |
30 <span id="test">in Liberty<i>F and seven</i> years <b> as </b>our fathers f
upon this | |
31 continent, a new nation, conceived in Liberty, and
dedicated to the | |
32 proposition that all</span> | |
33 </div> | |
34 | |
35 <script> | |
36 runEditingTest(); | |
37 </script> | |
38 | |
39 </body> | |
40 </html> | |
OLD | NEW |