blob: a7b875418db5852a0f279dde4b66111482c78dfb [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.trigger {
width: 200px;
height: 200px;
background-color: blue;
-webkit-transform: translateZ(0);
}
.overflow-scrolling-touch {
width: 200px;
height: 200px;
position: absolute;
top: 0px;
left: 0px;
overflow: scroll;
-webkit-overflow-scrolling: touch;
background-color: blue;
}
.content {
width: 1000px;
height: 1000px;
position: relative;
top: 50px;
left: 50px;
background-color: green;
}
</style>
<script type="text/javascript" charset="utf-8">
if (window.layoutTestController) {
layoutTestController.dumpAsText();
layoutTestController.waitUntilDone();
}
function doTest()
{
if (window.layoutTestController) {
document.getElementById('layers').innerText = layoutTestController.layerTreeAsText();
layoutTestController.notifyDone();
}
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
<div class="trigger"></div>
<div class="overflow-scrolling-touch">
<div class="content"></div>
</div>
<pre id="layers">Layer tree goes here in DRT</pre>
</body>
</html>