Index: third_party/WebKit/LayoutTests/fast/html/details-add-summary-4-and-click.html |
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-add-summary-4-and-click.html b/third_party/WebKit/LayoutTests/fast/html/details-add-summary-4-and-click.html |
deleted file mode 100644 |
index 72e19cc3d444f10f19421904eb34f04740f876ae..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/html/details-add-summary-4-and-click.html |
+++ /dev/null |
@@ -1,26 +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")); |
- |
- if (!window.testRunner || !window.eventSender) |
- return; |
- eventSender.mouseMoveTo(2, 2); |
- eventSender.mouseDown(); |
- eventSender.mouseUp(); |
-}; |
- |
-</script> |
- |
-<body style="margin: 0px" onload="runTests()"> |
- <details id="dt1"> |
- <summary id="summary1">summary</summary> |
- </details> |
-</body> |