Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug101201.html
blob4079f049c5a56353a63f74cf3bb23a9025a6da91
1 <html>
2 <head>
3 <title>dom test - editor inspired - border width dropped during reflow</title>
4 <script>
5 function domfunc(){
6 var td1= document.getElementById("stretch");
7 var text = document.createTextNode("100000");
8 td1.appendChild(text);
10 </script>
11 <style>
12 td {border:solid 5px green}
13 </style>
14 </head>
15 <body onload="domfunc()">
16 dom access
17 <table border="1" cellspacing="1" >
18 <tr>
19 <td id="stretch"></td>
20 </tr>
21 </table>
22 reference
23 <table border="1" cellspacing="1" >
24 <tr>
25 <td>100000</td>
26 </tr>
27 </table>
29 </body>
30 </html>