Index: third_party/WebKit/LayoutTests/fast/html/details-add-child-1.html |
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-add-child-1.html b/third_party/WebKit/LayoutTests/fast/html/details-add-child-1.html |
deleted file mode 100644 |
index d31ad98216edf6187f1fa9110fbb085927ba9157..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/html/details-add-child-1.html |
+++ /dev/null |
@@ -1,18 +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").appendChild(createNewElement("b", "toadd", "should have bold test")); |
-}; |
-</script> |
- |
-<body onload="runTests()"> |
- <details id="detail" open> |
- <summary id="summary">summary </summary> |
- </details> |
-</body> |