Index: third_party/WebKit/LayoutTests/fast/html/details-remove-child-2.html |
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-remove-child-2.html b/third_party/WebKit/LayoutTests/fast/html/details-remove-child-2.html |
deleted file mode 100644 |
index 109d297f8f941e33f306a9533b3ba4b9e829f77e..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/html/details-remove-child-2.html |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-<script> |
-var createNewElement = function (tag, id, text) { |
- var result = document.createElement(tag); |
- result.setAttribute('id',id); |
- result.innerHTML = text; |
- return result; |
-}; |
- |
-var runTests = function () { |
- document.getElementById("detail").removeChild(document.getElementById("toremove")); |
-}; |
-</script> |
- |
-<body onload="runTests()"> |
- <details id="detail" open> |
- <b id="toremove">this should be removed</b> |
- <summary id="summary">summary </summary> |
- should have no bold test. |
- </details> |
-</body> |