1 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.1//EN"
2 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3 <html xmlns=
"http://www.w3.org/1999/xhtml">
15 <script src=
"../editing.js" language=
"JavaScript" type=
"text/JavaScript" />
19 function editingTest() {
20 for (i
= 0; i
!= 4; i
++)
21 moveSelectionForwardByCharacterCommand();
22 for (i
= 0; i
!= 3; i
++)
23 extendSelectionForwardByCharacterCommand();
25 moveSelectionForwardByCharacterCommand();
34 <div contenteditable=
"" id=
"root" class=
"editing">
35 <span id=
"test">foo bar baz
</span>
39 runDumpAsTextEditingTest(true);