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

Side by Side Diff: third_party/WebKit/LayoutTests/html/details_summary/details-open-javascript.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 <details id="details1"> 1 <details id="details1">
2 <summary>details1</summary> 2 <summary>details1</summary>
3 <input> 3 <input>
4 </details> 4 </details>
5 5
6 <details id="details2" open> 6 <details id="details2" open>
7 <summary>details2</summary> 7 <summary>details2</summary>
8 <input> 8 <input>
9 </details> 9 </details>
10 10
11 <script> 11 <script>
12 document.getElementById("details1").open = true; 12 document.getElementById("details1").open = true;
13 document.getElementById("details2").open = false; 13 document.getElementById("details2").open = false;
14 </script> 14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698