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