Index: third_party/WebKit/LayoutTests/fast/html/details-add-details-child-2.html |
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-add-details-child-2.html b/third_party/WebKit/LayoutTests/fast/html/details-add-details-child-2.html |
deleted file mode 100644 |
index 8b9e8bf42ea591ca8498e79287d93734369e180a..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/html/details-add-details-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 () { |
- document.getElementById("toappended").appendChild(createNewElement("b", "toadd", "should have bold test")); |
-}; |
-</script> |
- |
-<body onload="runTests()"> |
- <details open> |
- <summary id="summary">summary</summary> |
- <span id="toappended"></span> |
- </details> |
-</body> |