| Index: third_party/WebKit/LayoutTests/fast/overflow/do-not-calc-overflow-on-tables-needing-layout.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/overflow/do-not-calc-overflow-on-tables-needing-layout.html b/third_party/WebKit/LayoutTests/fast/overflow/do-not-calc-overflow-on-tables-needing-layout.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6e5e3f7c15f2b0078232b7220088e016853bee3c
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/overflow/do-not-calc-overflow-on-tables-needing-layout.html
|
| @@ -0,0 +1,16 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| + .cell { display: table-cell; }
|
| + .cell:nth-last-child(even) { -webkit-transform: rotate(180deg); }
|
| +</style>
|
| +<body>
|
| + <div class="cell">crbug.com/604664: Tests passes if it doesn't crash.</div>
|
| + <div id="div" class="cell"></div>
|
| +</body>
|
| +<script>
|
| + if (window.testRunner)
|
| + testRunner.dumpAsText();
|
| + var block = document.createElement('div');
|
| + document.body.offsetTop;
|
| + block.appendChild(document.getElementById("div"));
|
| +</script>
|
|
|