Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug60749.html
blobc526350dd5e22d8ea590f7584cf0f4381b622779
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
3 <html>
4 <head>
5 <title>This is a title</title>
6 <script type="text/javascript">
8 function test1() {
9 var e1 = document.getElementById("myTd");
10 e1.style.width = 300;
11 var e2 = document.getElementById("table");
13 function test2() {
14 var e1 = document.getElementById("myTd");
15 e1.style.width = 300;
16 var e2 = document.getElementById("table");
17 e2.style.display = 'none';
18 e2.style.display = '';
21 </script>
22 </head>
23 <body onload=test1()>
24 <table id="table" cellspacing=0 border=3>
25 <tr>
26 <td>fieldLabel</td>
27 <td id="myTd">&nbsp;&nbsp;&nbsp;InspectionText</td>
28 </tr>
29 </table>
30 <form action="">
31 <input type="button" value="change width" onclick="test1()">
32 <input type="button" value="change width with table reflow"
33 onclick="test2()">
34 </form>
35 </body>
36 </html>