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

Unified 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, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/html/details-children-merge-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-children-merge-crash.html b/third_party/WebKit/LayoutTests/fast/html/details-children-merge-crash.html
deleted file mode 100644
index 0b7201792dd69f77c4918ba2a237b017de5b956a..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/html/details-children-merge-crash.html
+++ /dev/null
@@ -1,31 +0,0 @@
-
-<script>
-
-var runTests = function () {
-
- if (!window.testRunner)
- return;
-
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-
- var d = document.getElementById("d1");
-
- setTimeout(function () {
- d.open = false;
- setTimeout(function () {
- d.open = true;
- setTimeout(function () {
- d.open = false;
- testRunner.notifyDone();
- }, 1);
- }, 1);
- }, 1);
-};
-
-</script>
-
-<body onload="runTests()">
- Test passes if it does not crash.
- <li><details open id="d1">some text</details></li>
-</body>

Powered by Google App Engine
This is Rietveld 408576698