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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/html/details-children-merge-crash.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
2 <script>
3
4 var runTests = function () {
5
6 if (!window.testRunner)
7 return;
8
9 testRunner.dumpAsText();
10 testRunner.waitUntilDone();
11
12 var d = document.getElementById("d1");
13
14 setTimeout(function () {
15 d.open = false;
16 setTimeout(function () {
17 d.open = true;
18 setTimeout(function () {
19 d.open = false;
20 testRunner.notifyDone();
21 }, 1);
22 }, 1);
23 }, 1);
24 };
25
26 </script>
27
28 <body onload="runTests()">
29 Test passes if it does not crash.
30 <li><details open id="d1">some text</details></li>
31 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698