Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / select-dirty-parent-pref-widths.html
blob18a79cb5118e7c2560a596e68c080025ef0be475
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
5 function go() {
6 document.getElementById('sel1').style.display = '';
8 if (window.testRunner)
9 window.testRunner.notifyDone();
12 function main() {
13 if (window.testRunner)
14 window.testRunner.waitUntilDone();
15 setTimeout(go, 0);
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>
26 <p>The select element in the table above must not spill outside of the table.</p>
27 </body>
28 </html>