blob: 9ab10159d8c0b3e23d73c5094961873dd837df7d [file] [log] [blame]
<!doctype html>
<title>fieldset, border-radius and hit testing</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<style>
fieldset { width: 80px; height: 80px; border-radius: 100px; border: 10px solid; background: lime; }
</style>
<fieldset>
</fieldset>
<script>
test(() => {
assert_equals(document.elementFromPoint(20, 20), document.body);
});
</script>