| Index: third_party/WebKit/LayoutTests/paint/invalidation/table-two-pass-layout-overpaint-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/table-two-pass-layout-overpaint-expected.html b/third_party/WebKit/LayoutTests/paint/invalidation/table-two-pass-layout-overpaint-expected.html
|
| index 013c37972c68d297293d4cad466e57579afd37df..6c8da19e028f53baeac839c921f185da5e24b142 100644
|
| --- a/third_party/WebKit/LayoutTests/paint/invalidation/table-two-pass-layout-overpaint-expected.html
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/table-two-pass-layout-overpaint-expected.html
|
| @@ -11,8 +11,14 @@
|
| <tr>
|
| <td>
|
| <div id="target"></div>
|
| + <div id="dummy"></div>
|
| </td>
|
| </tr>
|
| </table>
|
| </body>
|
| </html>
|
| +<!-- crbug.com/690087: We do this to force a two-pass layout so that we get the same height on the table as the reference. -->
|
| +<script>
|
| + document.body.offsetTop;
|
| + document.getElementById("dummy").style.display = "none";
|
| +</script>
|
|
|