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

Side by Side Diff: third_party/WebKit/LayoutTests/html/details_summary/details-replace-summary-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
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 span { display: inline-block; font-family: monospace; } 4 span { display: inline-block; font-family: monospace; }
5 </style> 5 </style>
6 <script> 6 <script>
7 function test() 7 function test()
8 { 8 {
9 var s2 = document.getElementById("s2"); 9 var s2 = document.getElementById("s2");
10 var s3 = document.createElement("span"); 10 var s3 = document.createElement("span");
(...skipping 11 matching lines...) Expand all
22 <body onload="runTest()"> 22 <body onload="runTest()">
23 <details open> 23 <details open>
24 <summary> 24 <summary>
25 <span id="s1">Details1</span> 25 <span id="s1">Details1</span>
26 <span id="s2">Details2</span> 26 <span id="s2">Details2</span>
27 </summary> 27 </summary>
28 </details> 28 </details>
29 <input id="run" type="button" value="click" onclick="test()"> 29 <input id="run" type="button" value="click" onclick="test()">
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698