Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug102145-2.html
blobbd58d55ff93b09ca602643be6b180339f3119c3a
1 <html>
2 <head>
3 <title>Test Page dom test bug 102145a</title>
4 <script language="JavaScript">
6 function setElementSize (elementId) {
7 myElement = document.getElementById(elementId);
8 myElement.style.height =200;
9 myElement.width = 200;}
12 </script>
13 </head>
14 <body onload="setElementSize('mytable')">
16 <table id="mytable" width="100%"><tr><td style="background-color:green">
17 I should be 200px x 200px
18 </td></tr></table>
19 </body>
20 </html>