blob: d5e335711c925e4e7dadcdd1901ccadb4dcde6cc [file] [log] [blame] [edit]
<!-- webkit-test-runner [ BlocksInInlineLayoutEnabled=true ] -->
<style>
body {
margin: 0px;
}
.container {
border: 5px solid green;
}
.block {
background: blue;
width: 50px;
height: 80px;
margin: 100px;
}
</style>
<div class=container>
<span>
<div class=block></div>
</span>
</div>
<pre id=log></pre>
<script>
// hittest margin area.
log.textContent = document.elementsFromPoint(50, 150);
</script>