Index: LayoutTests/fast/forms/select/popup-menu-appearance.html |
diff --git a/LayoutTests/fast/forms/calendar-picker/calendar-picker-appearance-required.html b/LayoutTests/fast/forms/select/popup-menu-appearance.html |
similarity index 51% |
copy from LayoutTests/fast/forms/calendar-picker/calendar-picker-appearance-required.html |
copy to LayoutTests/fast/forms/select/popup-menu-appearance.html |
index 4b160b4ba0d30554ff0431a194d1e43ca0ee739c..184066b2fb84b4d8fc5085d83a786567de309a0e 100644 |
--- a/LayoutTests/fast/forms/calendar-picker/calendar-picker-appearance-required.html |
+++ b/LayoutTests/fast/forms/select/popup-menu-appearance.html |
@@ -5,17 +5,20 @@ |
window.enablePixelTesting = true; |
</script> |
<script src="../../../resources/js-test.js"></script> |
-<script src="../../forms/resources/picker-common.js"></script> |
-<script src="resources/calendar-picker-common.js"></script> |
+<script src="../resources/picker-common.js"></script> |
</head> |
<body> |
-<input type=date id=date value="1800-12-31" required> |
- |
+<select id="menu"> |
+ <option>foo</option> |
+ <option selected>bar</option> |
+ <option>qux</option> |
+ <option>baz</option> |
+</select> |
<p id="description" style="opacity: 0"></p> |
<div id="console" style="opacity: 0"></div> |
- |
<script> |
-openPicker(document.getElementById('date'), finishJSTest); |
+var menu = document.getElementById('menu'); |
+openPicker(menu, finishJSTest); |
</script> |
</body> |
</html> |