| Index: third_party/WebKit/LayoutTests/fast/forms/select-popup/popup-menu-appearance-coarse.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/select-popup/popup-menu-appearance-coarse.html b/third_party/WebKit/LayoutTests/fast/forms/select-popup/popup-menu-appearance-coarse.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8be5a2d59054cd468a7dbab0cc7e02f23b7e4e3a
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/forms/select-popup/popup-menu-appearance-coarse.html
|
| @@ -0,0 +1,29 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<script>
|
| +window.enablePixelTesting = true;
|
| +</script>
|
| +<script src="../../../resources/js-test.js"></script>
|
| +<script src="../resources/picker-common.js"></script>
|
| +</head>
|
| +<body>
|
| +<select id="menu">
|
| + <option>foo</option>
|
| + <option selected>bar</option>
|
| + <option style="font-size:8px;">qux</option>
|
| + <option style="font-size:40px;">baz</option>
|
| +</select>
|
| +<p id="description" style="opacity: 0"></p>
|
| +<div id="console" style="opacity: 0"></div>
|
| +<script>
|
| +internals.settings.setAvailablePointerTypes('fine,coarse');
|
| +internals.settings.setPrimaryPointerType('fine')
|
| +var menu = document.getElementById('menu');
|
| +openPicker(menu, finishJSTest, function () {
|
| + testFailed('picker didn\'t open')
|
| + finishJSTest();
|
| +});
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|