OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <script> |
| 5 window.enablePixelTesting = true; |
| 6 function startTest() { |
| 7 if (window.testRunner) { |
| 8 testRunner.setBackingScaleFactor(2.0, function() {}); |
| 9 } |
| 10 } |
| 11 window.matchMedia('screen and (min-resolution: 2dppx)'). |
| 12 addListener(function(e) { |
| 13 if (e.matches) { |
| 14 openMenu(); |
| 15 } |
| 16 }); |
| 17 |
| 18 function openMenu() { |
| 19 openPicker(menu, done, function () { |
| 20 testFailed('picker didn\'t open') |
| 21 finishJSTest(); |
| 22 }); |
| 23 } |
| 24 function done() { |
| 25 finishJSTest(); |
| 26 } |
| 27 </script> |
| 28 <script src="../../resources/js-test.js"></script> |
| 29 <script src="../forms/resources/picker-common.js"></script> |
| 30 </head> |
| 31 <body onLoad="startTest()"> |
| 32 <p>The font size in the popup should be same as the font size of the SELECT elem
ent except the third OPTION.</p> |
| 33 <select id="menu"> |
| 34 <option>foo</option> |
| 35 <option selected>bar</option> |
| 36 <option hidden>qux</option> |
| 37 <option>baz</option> |
| 38 <optgroup label="Group"> |
| 39 <option>foo</option> |
| 40 <option>bar</option> |
| 41 </optgroup> |
| 42 </select> |
| 43 <p id="description" style="opacity: 0"></p> |
| 44 select<sediv id="console" style="opacity: 0"></div> |
| 45 <script> |
| 46 </script> |
| 47 </body> |
| 48 </html> |
OLD | NEW |