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

Side by Side Diff: third_party/WebKit/LayoutTests/html/details_summary/details-keyboard-show-hide.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 <!DOCTYPE html> 1 <!DOCTYPE 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 5
6 <body> 6 <body>
7 <p id="description"></p> 7 <p id="description"></p>
8 <div id="console"></div> 8 <div id="console"></div>
9 <details id="details"><summary id="summary"></summary><input></details> 9 <details id="details"><summary id="summary"></summary><input></details>
10 <script> 10 <script>
(...skipping 18 matching lines...) Expand all
29 eventSender.keyDown(" "); 29 eventSender.keyDown(" ");
30 shouldBeTrue('openAttribute("details")'); 30 shouldBeTrue('openAttribute("details")');
31 eventSender.keyDown(" "); 31 eventSender.keyDown(" ");
32 shouldBeFalse('openAttribute("details")'); 32 shouldBeFalse('openAttribute("details")');
33 } else { 33 } else {
34 debug('There are tests using eventSender.'); 34 debug('There are tests using eventSender.');
35 } 35 }
36 </script> 36 </script>
37 </body> 37 </body>
38 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698