Index: third_party/WebKit/LayoutTests/fast/html/details-remove-summary-child-2.html |
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-remove-summary-child-2.html b/third_party/WebKit/LayoutTests/fast/html/details-remove-summary-child-2.html |
deleted file mode 100644 |
index 189d19c3df0c0198d91050bc02a2c1b1ab7990fe..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/html/details-remove-summary-child-2.html |
+++ /dev/null |
@@ -1,19 +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 () { |
- var toremove = document.getElementById("toremove"); |
- toremove.parentNode.removeChild(toremove); |
-}; |
-</script> |
- |
-<body onload="runTests()"> |
- <details open> |
- <summary>summary <span><b id="toremove">to be removed</b> shouldn't have any bold text.</span></summary> |
- </details> |
-</body> |