blob: c3d9f7c1f37faea5669f2e92552b1564c9495403 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.fixed {
position: fixed;
top: 50px;
left: 50px;
}
.box {
height: 100px;
width: 100px;
background-color: blue;
}
.child {
position: relative;
left: 50px;
top: 50px;
}
#output {
margin-top: 520px;
}
</style>
<script src="../../../resources/ui-helper.js"></script>
<script src="resources/wheel-handler-region-helper.js"></script>
<script>
window.addEventListener('load', dumpRegionAndNotifyDone, false);
</script>
</head>
<body>
<div class="box">
<div class="fixed box" onmousewheel="(void)0">
</div>
</div>
<pre id="output"></pre>
</body>
</html>