| Index: LayoutTests/fast/forms/select/popup-menu-appearance-tall.html
|
| diff --git a/LayoutTests/fast/forms/select/popup-menu-appearance-many.html b/LayoutTests/fast/forms/select/popup-menu-appearance-tall.html
|
| similarity index 64%
|
| copy from LayoutTests/fast/forms/select/popup-menu-appearance-many.html
|
| copy to LayoutTests/fast/forms/select/popup-menu-appearance-tall.html
|
| index 68424caa8fd888138e4a9c6f2ce691706a4bce27..7fc105791f08ad9fcd77eb66e6437787d820d287 100644
|
| --- a/LayoutTests/fast/forms/select/popup-menu-appearance-many.html
|
| +++ b/LayoutTests/fast/forms/select/popup-menu-appearance-tall.html
|
| @@ -8,18 +8,18 @@ window.enablePixelTesting = true;
|
| <script src="../resources/picker-common.js"></script>
|
| </head>
|
| <body>
|
| -<select id="menu">
|
| +<select id="menu" style="width: 10px; font-size: 300px;">
|
| + <option>X</option>
|
| + <option>X</option>
|
| + <option>X</option>
|
| + <option>X</option>
|
| + <option>X</option>
|
| </select>
|
| <p id="description" style="opacity: 0"></p>
|
| <div id="console" style="opacity: 0"></div>
|
| <script>
|
| +description('Tests if width is increased for the scrollbar. PASS if the X is not clipped.');
|
| var menu = document.getElementById('menu');
|
| -for (var i = 0; i < 200; i++) {
|
| - var option = new Option('item ' + i);
|
| - if (i === 100)
|
| - option.selected = true;
|
| - menu.appendChild(option);
|
| -}
|
| openPicker(menu, finishJSTest, function () {
|
| testFailed('picker didn\'t open')
|
| finishJSTest();
|
|
|