| Index: LayoutTests/fast/table/overallocating-auto-cells.html
|
| diff --git a/LayoutTests/fast/table/overallocating-auto-cells.html b/LayoutTests/fast/table/overallocating-auto-cells.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dab2a4839971b1f3478174df1db26e0d1451fe34
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/table/overallocating-auto-cells.html
|
| @@ -0,0 +1,38 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../resources/check-layout.js"></script>
|
| +<div style="width:600px;">
|
| + <div>
|
| + <table cellspacing="0" cellpadding="4" rules="all" border="1" style="border: solid 1px red;" data-expected-width=600>
|
| + <tbody>
|
| + <tr>
|
| + <td>Column</td>
|
| + <td>Column</td>
|
| + <td>Column</td>
|
| + <td>Column</td>
|
| + <td>Column</td>
|
| + <td>Column</td>
|
| + <td>Column</td>
|
| + <td>Column</td>
|
| + </tr>
|
| + <tr>
|
| + <td>Text Longword</td>
|
| + <td>Text</td>
|
| + <td>Just some random text to make the column width just that little bit wider.</td>
|
| + <td>Text</td>
|
| + <td>Text</td>
|
| + <td>Text</td>
|
| + <td>Text</td>
|
| + <td>Text</td>
|
| + </tr>
|
| + </tbody>
|
| + </table>
|
| + </div>
|
| +</div>
|
| +<p id="test-output"></p>
|
| +<p>crbug.com/498165: If we overallocate width in a table with auto cells ensure we unwind completely.</p>
|
| +<script>
|
| + window.checkLayout("table", document.getElementById("test-output"));
|
| +</script>
|
| +
|
| +
|
| +
|
|
|