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