Index: third_party/WebKit/LayoutTests/fast/forms/option-value-and-label.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/option-value-and-label.html b/third_party/WebKit/LayoutTests/fast/forms/option-value-and-label.html |
deleted file mode 100644 |
index a985f950be29330db3f027dd625430c1a23cecc6..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/forms/option-value-and-label.html |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-<!DOCTYPE HTML> |
-<html> |
-<head> |
-<script src="../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<p id="description"></p> |
-<div id="console"></div> |
- |
-<select> |
-<option id="o1">text</option> |
-<option id="o2" value="value">text</option> |
-<option id="o3" label="label">text</option> |
-<option id="o4" value="value" label="label">text</option> |
-</select> |
- |
-<script> |
-description('Test for .value and .label of OPTION element'); |
- |
-var o1 = document.getElementById('o1'); |
-shouldBe('o1.value', '"text"'); |
-shouldBe('o1.label', '"text"'); |
- |
-var o2 = document.getElementById('o2'); |
-shouldBe('o2.value', '"value"'); |
-shouldBe('o2.label', '"text"'); |
- |
-var o3 = document.getElementById('o3'); |
-shouldBe('o3.value', '"text"'); |
-shouldBe('o3.label', '"label"'); |
- |
-var o4 = document.getElementById('o4'); |
-shouldBe('o4.value', '"value"'); |
-shouldBe('o4.label', '"label"'); |
-</script> |
-</body> |
-</html> |