blob: 6e5e3f7c15f2b0078232b7220088e016853bee3c [file] [log] [blame]
<!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>