| Index: third_party/WebKit/LayoutTests/fast/table/layout-section-when-table-height-changes-2.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/table/layout-section-when-table-height-changes-2.html b/third_party/WebKit/LayoutTests/fast/table/layout-section-when-table-height-changes-2.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a672749ade56204b7220e9571c5acf8f0c5c3469
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/table/layout-section-when-table-height-changes-2.html
|
| @@ -0,0 +1,16 @@
|
| +<!DOCTYPE html>
|
| +<p>crbug.com/691968: There should be a blue square below.</p>
|
| +<table id="table" style="border-spacing:0; width:100px; height:200px; background:blue;" data-expected-height=100>
|
| + <tr>
|
| + <td></td>
|
| + </tr>
|
| +</table>
|
| +<div id="results"></div>
|
| +<script src="../../resources/testharness.js"></script>
|
| +<script src="../../resources/testharnessreport.js"></script>
|
| +<script src="../../resources/check-layout-th.js"></script>
|
| +<script>
|
| + document.body.offsetTop;
|
| + document.getElementById("table").style.height = "100px";
|
| + checkLayout('#table', results);
|
| +</script>
|
|
|