Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select-popup/popup-menu-appearance-coarse.html

Issue 2810583002: SELECT popup: Make OPTIONs taller for touchscreen. (Closed)
Patch Set: . Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 window.enablePixelTesting = true;
6 </script>
7 <script src="../../../resources/js-test.js"></script>
8 <script src="../resources/picker-common.js"></script>
9 </head>
10 <body>
11 <select id="menu">
12 <option>foo</option>
13 <option selected>bar</option>
14 <option style="font-size:8px;">qux</option>
15 <option style="font-size:40px;">baz</option>
16 </select>
17 <p id="description" style="opacity: 0"></p>
18 <div id="console" style="opacity: 0"></div>
19 <script>
20 internals.settings.setAvailablePointerTypes('fine,coarse');
21 internals.settings.setPrimaryPointerType('fine')
22 var menu = document.getElementById('menu');
23 openPicker(menu, finishJSTest, function () {
24 testFailed('picker didn\'t open')
25 finishJSTest();
26 });
27 </script>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698