fieldset-border-radius-hittest.html (416B)
1 <!doctype html> 2 <title>fieldset, border-radius and hit testing</title> 3 <script src=/resources/testharness.js></script> 4 <script src=/resources/testharnessreport.js></script> 5 <style> 6 fieldset { width: 80px; height: 80px; border-radius: 100px; border: 10px solid; background: lime; } 7 </style> 8 <fieldset> 9 </fieldset> 10 <script> 11 test(() => { 12 assert_equals(document.elementFromPoint(20, 20), document.body); 13 }); 14 </script>