Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / overallocating-width-with-table-cell-with-specified-width.html
blobbf6283836526e77be8ed32310f706afade816aa7
1 <!DOCTYPE html>
2 <div style="width: 400px;">
3 <table border=1>
4 <tr>
5 <td width="14" id="first" data-expected-width=18></td>
6 <td>M</td>
7 <td>
8 Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text
9 </td>
10 <td>
11 Text Text
12 </td>
13 </tr>
14 <tr>
15 <td width="14" id="first" data-expected-width=18></td>
16 <td>M</td>
17 <td>
18 Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text
19 </td>
20 <td>
21 Text Text
22 </td>
23 </tr>
24 </table>
25 </div>
26 <div id="test-output"></div>
27 <div> crbug.com/504124: overallocating width unwinds correctly on auto width cells
28 <script src="../../resources/check-layout.js"></script>
29 <script>
30 window.checkLayout("#first", document.getElementById("test-output"));
31 </script>