Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/4774354.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698