summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-border-radius-hittest.html
blob: 9ab10159d8c0b3e23d73c5094961873dd837df7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!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>