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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/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
(Empty)
1 <body>
2 <script src="../../resources/js-test.js"></script>
3 <script>
4 (function() {
5 (function() {
6 var theElement = document.createElement("details");
7 document.body.appendChild(theElement);
8 theElement.addEventListener("DOMNodeRemovedFromDocument", function () { eventSender.keyDown("\t"); }, false);
9 theElement.parentNode.removeChild(theElement);
10 })();
11 gc();
12 debug("PASS unless crash");
13 })();
14 </script>
15 </body>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/SmokeTests ('k') | third_party/WebKit/LayoutTests/fast/dom/mutation-details-focus-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698