| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
| 5 function go() { | 5 function go() { |
| 6 document.getElementById('sel1').style.display = ''; | 6 document.getElementById('sel1').style.display = ''; |
| 7 | 7 |
| 8 if (window.testRunner) | 8 if (window.testRunner) |
| 9 window.testRunner.notifyDone(); | 9 window.testRunner.notifyDone(); |
| 10 } | 10 } |
| 11 | 11 |
| 12 function main() { | 12 function main() { |
| 13 if (window.testRunner) | 13 if (window.testRunner) |
| 14 window.testRunner.waitUntilDone(); | 14 window.testRunner.waitUntilDone(); |
| 15 setTimeout(go, 0); | 15 setTimeout(go, 0); |
| 16 } | 16 } |
| 17 </script> | 17 </script> |
| 18 </head> | 18 </head> |
| 19 <body onload="main();"> | 19 <body onload="main();"> |
| 20 <table border='1'> | 20 <table border='1'> |
| 21 <tr> | 21 <tr> |
| 22 <td><select id="sel1" style="display: none;"><option label="test"></sele
ct></td> | 22 <td><select id="sel1" style="display: none;"><option label="test"></sele
ct></td> |
| 23 </tr> | 23 </tr> |
| 24 </table> | 24 </table> |
| 25 | 25 |
| 26 <p>The select element in the table above must not spill outside of the table
.</p> | 26 <p>The select element in the table above must not spill outside of the table
.</p> |
| 27 </body> | 27 </body> |
| 28 </html> | 28 </html> |
| OLD | NEW |