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

Side by Side Diff: third_party/WebKit/LayoutTests/html/details_summary/mutation-details-focus.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 <body> 1 <body>
2 <script src="../../resources/js-test.js"></script> 2 <script src="../../resources/js-test.js"></script>
3 <script> 3 <script>
4 (function() { 4 (function() {
5 (function() { 5 (function() {
6 var theElement = document.createElement("details"); 6 var theElement = document.createElement("details");
7 document.body.appendChild(theElement); 7 document.body.appendChild(theElement);
8 theElement.addEventListener("DOMNodeRemovedFromDocument", function () { eventSender.keyDown("\t"); }, false); 8 theElement.addEventListener("DOMNodeRemovedFromDocument", function () { eventSender.keyDown("\t"); }, false);
9 theElement.parentNode.removeChild(theElement); 9 theElement.parentNode.removeChild(theElement);
10 })(); 10 })();
11 gc(); 11 gc();
12 debug("PASS unless crash"); 12 debug("PASS unless crash");
13 })(); 13 })();
14 </script> 14 </script>
15 </body> 15 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698