blob: 176c2a2960cf1eef1a16ea4b9bd19bec7a4d5b58 [file] [log] [blame]
<!doctype html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<style>
img{
background-color:red;
border-radius: 50px;
}
</style>
<img src="../fast/borders/resources/mask.png" width="100px" height="100px" />
<script>
test(function(t)
{
var element = document.elementFromPoint(100, 100);
assert_equals(element.nodeName, 'BODY');
}, "elementFromPoint should return BODY when outside an element");
</script>