OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <script> | |
4 if (window.testRunner) { | |
5 testRunner.dumpAsText(); | |
6 window.jsTestAsync = true; | |
7 testRunner.waitUntilDone(); | |
8 } | |
9 | |
10 window.onload = function() { | |
11 document.execCommand("SelectAll"); | |
12 document.execCommand("Indent"); | |
13 if (window.testRunner) | |
14 setTimeout(function() { testRunner.notifyDone(); }, 0); | |
yosin_UTC9
2014/12/03 01:10:32
Why do we need to call |notifyDone()| in |setTimeo
| |
15 } | |
16 </script> | |
17 <body contenteditable> | |
18 <object> | |
19 This test passes if it doesn't crash | |
20 </object> | |
21 </body> | |
22 </html> | |
OLD | NEW |