blob: 2ab86a4ef7cfb34d17ba0f8f981dbac970207bb1 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.fixed {
position: fixed;
top: 10px;
left: 10px;
}
.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="fixed box">
<div class="child box" onmousewheel="(void)0">
</div>
</div>
<pre id="output"></pre>
</body>
</html>