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> |