blob: 18a79cb5118e7c2560a596e68c080025ef0be475 [file] [log] [blame]
eric@webkit.orgfde843e2009-05-06 05:30:35 +00001<!DOCTYPE html>
2<html>
3 <head>
4 <script type="text/javascript">
5 function go() {
6 document.getElementById('sel1').style.display = '';
7
rniwa@webkit.orgea3cf922012-06-22 06:52:33 +00008 if (window.testRunner)
9 window.testRunner.notifyDone();
eric@webkit.orgfde843e2009-05-06 05:30:35 +000010 }
11
12 function main() {
rniwa@webkit.orgea3cf922012-06-22 06:52:33 +000013 if (window.testRunner)
14 window.testRunner.waitUntilDone();
eric@webkit.orgfde843e2009-05-06 05:30:35 +000015 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>