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

Side by Side Diff: third_party/WebKit/LayoutTests/html/sections/remove-body-during-body-replacement2.html

Issue 2669403002: Move tests for sections elements to html/sections/. (Closed)
Patch Set: Created 3 years, 10 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body><div><script> 3 <body><div><script>
4 4
5 if (!window.testRunner) 5 if (!window.testRunner)
6 document.write("This test requires GCController."); 6 document.write("This test requires GCController.");
7 else { 7 else {
8 testRunner.dumpAsText(); 8 testRunner.dumpAsText();
9 testRunner.waitUntilDone(); 9 testRunner.waitUntilDone();
10 10
(...skipping 10 matching lines...) Expand all
21 document.addEventListener('DOMSubtreeModified', function () { /* noop */ }, false); 21 document.addEventListener('DOMSubtreeModified', function () { /* noop */ }, false);
22 document.designMode = "on"; 22 document.designMode = "on";
23 document.execCommand("SelectAll"); 23 document.execCommand("SelectAll");
24 document.body.outerText = "ABC"; 24 document.body.outerText = "ABC";
25 }, 0); 25 }, 0);
26 } 26 }
27 27
28 </script> 28 </script>
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698