OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <script> | |
4 if (window.testRunner) | |
5 testRunner.dumpAsText(); | |
yosin_UTC9
2014/11/27 01:13:19
Could you call |testRunner.waitUntilDone()| and ca
| |
6 | |
7 window.onload = function() { | |
8 document.execCommand("SelectAll"); | |
9 document.execCommand("Indent"); | |
10 }; | |
11 </script> | |
12 <body contenteditable> | |
13 <object> | |
14 abcd | |
15 </object> | |
16 This test passes if it doesn't crash | |
17 </body> | |
18 </html> | |
OLD | NEW |