blob: 8eae74155d248385ce53ea7dfb7ec1b3ee607c85 [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
html, body, .scroller, .contents {
scale: 500;
}
.scroller {
width: 1200px;
height: 50px;
overflow: -webkit-paged-y visible;
border: 1px solid black;
transform: translateX(100%);
transform-origin: 100%;
}
.contents {
height: 200%;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<div class="scroller">
<div class="contents">This test should not crash.</div>
</div>
</body>
</html>