OLD | NEW |
1 <script src="../../resources/run-after-layout-and-paint.js" type="text/javascrip
t"></script> | 1 <script src="../../resources/run-after-layout-and-paint.js" type="text/javascrip
t"></script> |
2 <script type="text/javascript"> | 2 <script type="text/javascript"> |
3 | 3 |
4 function step1() { | 4 function step1() { |
5 if (window.testRunner) | 5 if (window.testRunner) |
6 window.testRunner.waitUntilDone(); | 6 window.testRunner.waitUntilDone(); |
7 // Wait for the frame to load. | 7 // Wait for the frame to load. |
8 window.setTimeout(step2, 100); | 8 window.setTimeout(step2, 100); |
9 } | 9 } |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 var sel = frame.getSelection(); | 30 var sel = frame.getSelection(); |
31 sel.setBaseAndExtent(text, 5, text, text.length); | 31 sel.setBaseAndExtent(text, 5, text, text.length); |
32 if (window.testRunner) | 32 if (window.testRunner) |
33 window.testRunner.notifyDone(); | 33 window.testRunner.notifyDone(); |
34 } | 34 } |
35 </script> | 35 </script> |
36 | 36 |
37 <body onload="step1();"> | 37 <body onload="step1();"> |
38 <iframe src="resources/contenteditable-iframe-src.html"></iframe> | 38 <iframe src="resources/contenteditable-iframe-src.html"></iframe> |
39 </body> | 39 </body> |
OLD | NEW |