Index: third_party/WebKit/LayoutTests/fast/forms/listbox-clear-restore-expected.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/listbox-clear-restore-expected.html b/third_party/WebKit/LayoutTests/fast/forms/listbox-clear-restore-expected.html |
deleted file mode 100644 |
index 56ca816ac4ac9d68f5c782e78ed5d435830e4766..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/forms/listbox-clear-restore-expected.html |
+++ /dev/null |
@@ -1,25 +0,0 @@ |
-<!DOCTYPE> |
-<html> |
-<body onload="test()"> |
-<select id="myList" size="10" multiple></select> |
-<script> |
-function populateList() |
-{ |
- var myList = document.getElementById("myList"); |
- var item; |
- |
- for (var ii = 0; ii < 20; ii++) { |
- item = document.createElement("option"); |
- item.value = ii; |
- item.appendChild(document.createTextNode("Item #" + ii)); |
- myList.appendChild(item); |
- } |
-} |
- |
-function test() |
-{ |
- populateList(); |
-} |
-</script> |
-</body> |
-</html> |