Index: third_party/WebKit/LayoutTests/fast/html/details-add-summary-4.html |
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-add-summary-4.html b/third_party/WebKit/LayoutTests/fast/html/details-add-summary-4.html |
deleted file mode 100644 |
index 3a075d90519e87ba02a3ed768b56130e41d4a580..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/html/details-add-summary-4.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("dt1").appendChild(createNewElement("summary", "new1", "new 1")); |
-}; |
- |
-</script> |
- |
-<body onload="runTests()"> |
- <details id="dt1"> |
- <summary id="summary1">summary</summary> |
- </details> |
-</body> |