OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
2 <body> | |
3 This test passes if it does not crash. | |
4 <script> | |
5 testRunner.waitUntilDone(); | |
Xianzhu
2014/12/11 23:26:19
if (window.testRunner)...
| |
6 testRunner.dumpAsText(); | |
7 | |
8 internals.settings.setCaretBrowsingEnabled(false); | |
9 testRunner.displayAsyncThen(function() { | |
10 internals.settings.setCaretBrowsingEnabled(true); | |
11 document.body.innerHTML += "PASS"; | |
12 testRunner.displayAsyncThen(function() { | |
13 testRunner.notifyDone(); | |
14 }); | |
15 }); | |
16 </script> | |
17 </body> | |
OLD | NEW |