eric@webkit.org | fde843e | 2009-05-06 05:30:35 +0000 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <script type="text/javascript"> |
| 5 | function go() { |
| 6 | document.getElementById('sel1').style.display = ''; |
| 7 | |
rniwa@webkit.org | ea3cf92 | 2012-06-22 06:52:33 +0000 | [diff] [blame] | 8 | if (window.testRunner) |
| 9 | window.testRunner.notifyDone(); |
eric@webkit.org | fde843e | 2009-05-06 05:30:35 +0000 | [diff] [blame] | 10 | } |
| 11 | |
| 12 | function main() { |
rniwa@webkit.org | ea3cf92 | 2012-06-22 06:52:33 +0000 | [diff] [blame] | 13 | if (window.testRunner) |
| 14 | window.testRunner.waitUntilDone(); |
eric@webkit.org | fde843e | 2009-05-06 05:30:35 +0000 | [diff] [blame] | 15 | setTimeout(go, 0); |
| 16 | } |
| 17 | </script> |
| 18 | </head> |
| 19 | <body onload="main();"> |
| 20 | <table border='1'> |
| 21 | <tr> |
| 22 | <td><select id="sel1" style="display: none;"><option label="test"></select></td> |
| 23 | </tr> |
| 24 | </table> |
| 25 | |
| 26 | <p>The select element in the table above must not spill outside of the table.</p> |
| 27 | </body> |
| 28 | </html> |