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

Side by Side Diff: third_party/WebKit/LayoutTests/html/details_summary/details-click-controls.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 <script src="../../resources/js-test.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 </head> 4 </head>
5 <body> 5 <body>
6 <details id="d"> 6 <details id="d">
7 <summary> 7 <summary>
8 <input type="button" value="button" id="buttonControl"> 8 <input type="button" value="button" id="buttonControl">
9 <input type="text" value="text" id="textControl"> 9 <input type="text" value="text" id="textControl">
10 <textarea value="textarea" id="textareaControl"></textarea> 10 <textarea value="textarea" id="textareaControl"></textarea>
(...skipping 24 matching lines...) Expand all
35 shouldBeFalse("details.open"); 35 shouldBeFalse("details.open");
36 clickOn("block"); 36 clickOn("block");
37 shouldBeTrue("details.open"); 37 shouldBeTrue("details.open");
38 details.style.display = "none"; 38 details.style.display = "none";
39 } 39 }
40 40
41 41
42 </script> 42 </script>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698