OLD | NEW |
1 <html> | 1 <html> |
2 <script> | 2 <script> |
3 function runTest() | 3 function runTest() |
4 { | 4 { |
5 if (window.layoutTestController) | 5 if (window.layoutTestController) |
6 layoutTestController.dumpAsText(); | 6 layoutTestController.dumpAsText(); |
7 | 7 |
8 window.getSelection().setBaseAndExtent(start, 0, null, 0); | 8 window.getSelection().setBaseAndExtent(start, 0, null, 0); |
9 document.execCommand("Indent"); | 9 document.execCommand("Indent"); |
10 document.getElementById("result").innerHTML = "PASS"; | 10 document.getElementById("result").innerHTML = "PASS"; |
11 } | 11 } |
12 </script> | 12 </script> |
13 <body onLoad="runTest();"> | 13 <body onLoad="runTest();"> |
14 <p id="result"></p> | 14 <p id="result"></p> |
15 <div contenteditable="true" id="start" style="text-decoration: none;"> | 15 <div contenteditable="true" id="start" style="text-decoration: none;"> |
16 <hr style="text-align: right;"/> | 16 <hr style="text-align: right;"/> |
17 </div> | 17 </div> |
18 </body> | 18 </body> |
19 </html> | 19 </html> |
20 | 20 |
OLD | NEW |