Index: third_party/WebKit/LayoutTests/fast/html/details-replace-text.html |
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-replace-text.html b/third_party/WebKit/LayoutTests/fast/html/details-replace-text.html |
deleted file mode 100644 |
index 94d7cbc86e5476d05eaffcf3f839d2ce74d79ba4..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/html/details-replace-text.html |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-<html> |
-<head> |
-<style> |
-span { display: inline-block; font-family: monospace; } |
-</style> |
-<script> |
-function test() |
-{ |
- var summary = document.getElementById("s2"); |
- var text = summary.previousSibling; |
- text.data = " "; |
-} |
- |
-function runTest() |
-{ |
- if (window.testRunner) |
- document.getElementById("run").click(); |
-} |
-</script> |
-<body onload="runTest()"> |
-<details open> |
- <span id="s1">Details1</span> |
- <summary>Summary</summary> |
- Text<span id="s2">Details2</span> |
-</details> |
-<input id="run" type="button" value="click" onclick="test()"> |
-</body> |
-</html> |