Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / calculated-width-on-col-within-colgroup.html
bloba7107e47da6603f5e97be8a783173b307f54ae94
1 <!DOCTYPE html>
2 <style>
3 col {
4 width: calc(-10in - 10%);
6 </style>
7 <script src="../../resources/check-layout.js"></script>
8 <table>
9 <colgroup width="200">
10 <col data-expected-width=0>
11 <col data-expected-width=0>
12 </colgroup>
13 <tr>
14 <td data-expected-width=200></td>
15 <td data-expected-width=200></td>
16 </tr>
17 </table>
18 <script>
19 checkLayout('table')
20 </script>
21 <p> crbug.com/446936: Use a used value of Auto on col elements that have a calc value. This is permitted by the spec and avoids ASSERTs.</p>