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

Side by Side Diff: third_party/WebKit/LayoutTests/html/details_summary/details-remove-summary-5.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
1 <script> 1 <script>
2 2
3 var runTests = function () { 3 var runTests = function () {
4 document.getElementById("dt1").removeChild(document.getElementById("summary1 ")); 4 document.getElementById("dt1").removeChild(document.getElementById("summary1 "));
5 }; 5 };
6 6
7 </script> 7 </script>
8 8
9 <body onload="runTests()"> 9 <body onload="runTests()">
10 <details open id="dt1"> 10 <details open id="dt1">
11 <summary id="summary1">summary 1</summary> 11 <summary id="summary1">summary 1</summary>
12 <summary id="summary2">summary 2</summary> 12 <summary id="summary2">summary 2</summary>
13 </details> 13 </details>
14 </body> 14 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698