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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/html/details-summary-document-child.html

Issue 2670273002: Move tests for DETAILS and SUMMARY elements to html/details_summary/. (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
(Empty)
1 <html>
2 <body onload="test()">
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
6
7 function test() {
8 document.open();
9 document.insertBefore(document.createElement("summary"), null);
10 // The document don't have <body> so we need use console.log()
11 // to make readable expectation.
12 console.log("PASS unless crash");
13 }
14 </script>
15 </body>
16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698