Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug222467.html
bloba2474f437a6028eae0a8eec1dbdf231e24ac6be0
1 <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
2 <html>
3 <head>
4 <title>Test Document</title>
5 <script language="JavaScript">
6 function changeWidth()
8 var table = document.getElementById('test_table');
10 table.style.width = 400;
12 return false;
14 </script>
15 </head>
16 <body onload="changeWidth()">
18 <table id="test_table" width="200" style="border: 1px solid blue;">
19 <tr>
20 <td>
21 </td>
22 </tr>
23 </table>
26 </body>
27 </html>