Skip to content

Commit 2c9aebf

Browse files
authored
HTML: test fieldset with border-radius and hit-testing
Bugs: https://bugzilla.mozilla.org/show_bug.cgi?id=1326163
1 parent 4e61ff3 commit 2c9aebf

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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>

0 commit comments

Comments
 (0)