Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / empty-cells-spread-2.html
blob37e42e9920d72bd0948fbb4e97bbaf8d24a3d61c
1 <!DOCTYPE HTML>
2 <style>
3 #blue { background-color: blue; width:90%;height:25px; }
4 </style>
5 <script src="../../resources/check-layout.js"></script>
6 <div style="width: 500px">
7 <table width=100% cellspacing=0 cellpadding=0>
8 <tr>
9 <td nowrap="1" data-expected-width=50>
10 <td nowrap="1" id="blue" data-expected-width=450>Text</td>
11 </tr>
12 </table>
13 </div>
14 <p> crbug.com/476370: Test empty cells get appropriate width when spread across a percent width table. </p>
15 <div id="console"></div>
16 <script>
17 checkLayout('td', document.getElementById('console'));
18 </script>