Index: third_party/WebKit/LayoutTests/fast/forms/select-out-of-bounds-index.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/select-out-of-bounds-index.html b/third_party/WebKit/LayoutTests/fast/forms/select-out-of-bounds-index.html |
deleted file mode 100644 |
index e79e877f812a115fa23650a628e97a440c330f6b..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/forms/select-out-of-bounds-index.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<html> |
- <head> |
- <script> |
- function test() { |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- var sl = document.getElementById('sl'); |
- sl.selectedIndex = 1; |
- sl.selectedIndex = 2; |
- sl.selectedIndex = 0; |
- sl.selectedIndex = -1; |
- sl.selectedIndex = 0; |
- sl.selectedIndex = 5; |
- } |
- </script> |
- </head> |
- <body onload="test()"> |
- This tests that we don't crash when setting the selectedIndex out of bounds<br> |
- <select id="sl"> |
- <optgroup label="group"> |
- <option id="op1">1 |
- <option id="op2">2 |
- </optgroup> |
- </select> |
- </body> |
-</html> |