Skip to content

Commit 369cae7

Browse files
committed
Bug 1485323 [wpt PR 12616] - HTML: test fieldset with border-radius and hit-testing, a=testonly
Automatic update from web-platform-testsHTML: test fieldset with border-radius and hit-testing Bugs: https://bugzilla.mozilla.org/show_bug.cgi?id=1326163 -- wpt-commits: 2c9aebf2096ec338064b494f3cdf6a3ffc9ac802 wpt-pr: 12616 UltraBlame original commit: a31c85a9e78ac2335eec758631b478c55809abcb
1 parent 288649e commit 369cae7

File tree

2 files changed

+230
-0
lines changed

2 files changed

+230
-0
lines changed

testing/web-platform/meta/MANIFEST.json

+110
Original file line numberDiff line numberDiff line change
@@ -2176364,6 +2176364,76 @@ elements
21763642176364
/
21763652176365
fieldset
21763662176366
-
2176367+
border
2176368+
-
2176369+
radius
2176370+
-
2176371+
hittest
2176372+
.
2176373+
html
2176374+
"
2176375+
:
2176376+
[
2176377+
[
2176378+
"
2176379+
/
2176380+
html
2176381+
/
2176382+
rendering
2176383+
/
2176384+
non
2176385+
-
2176386+
replaced
2176387+
-
2176388+
elements
2176389+
/
2176390+
the
2176391+
-
2176392+
fieldset
2176393+
-
2176394+
and
2176395+
-
2176396+
legend
2176397+
-
2176398+
elements
2176399+
/
2176400+
fieldset
2176401+
-
2176402+
border
2176403+
-
2176404+
radius
2176405+
-
2176406+
hittest
2176407+
.
2176408+
html
2176409+
"
2176410+
{
2176411+
}
2176412+
]
2176413+
]
2176414+
"
2176415+
html
2176416+
/
2176417+
rendering
2176418+
/
2176419+
non
2176420+
-
2176421+
replaced
2176422+
-
2176423+
elements
2176424+
/
2176425+
the
2176426+
-
2176427+
fieldset
2176428+
-
2176429+
and
2176430+
-
2176431+
legend
2176432+
-
2176433+
elements
2176434+
/
2176435+
fieldset
2176436+
-
21763672176437
default
21763682176438
-
21763692176439
style
@@ -3963787,6 +3963857,46 @@ elements
39637873963857
/
39637883963858
fieldset
39637893963859
-
3963860+
border
3963861+
-
3963862+
radius
3963863+
-
3963864+
hittest
3963865+
.
3963866+
html
3963867+
"
3963868+
:
3963869+
[
3963870+
"
3963871+
9ab10159d8c0b3e23d73c5094961873dd837df7d
3963872+
"
3963873+
"
3963874+
testharness
3963875+
"
3963876+
]
3963877+
"
3963878+
html
3963879+
/
3963880+
rendering
3963881+
/
3963882+
non
3963883+
-
3963884+
replaced
3963885+
-
3963886+
elements
3963887+
/
3963888+
the
3963889+
-
3963890+
fieldset
3963891+
-
3963892+
and
3963893+
-
3963894+
legend
3963895+
-
3963896+
elements
3963897+
/
3963898+
fieldset
3963899+
-
39637903963900
containing
39637913963901
-
39637923963902
block
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
<
2+
!
3+
doctype
4+
html
5+
>
6+
<
7+
title
8+
>
9+
fieldset
10+
border
11+
-
12+
radius
13+
and
14+
hit
15+
testing
16+
<
17+
/
18+
title
19+
>
20+
<
21+
script
22+
src
23+
=
24+
/
25+
resources
26+
/
27+
testharness
28+
.
29+
js
30+
>
31+
<
32+
/
33+
script
34+
>
35+
<
36+
script
37+
src
38+
=
39+
/
40+
resources
41+
/
42+
testharnessreport
43+
.
44+
js
45+
>
46+
<
47+
/
48+
script
49+
>
50+
<
51+
style
52+
>
53+
fieldset
54+
{
55+
width
56+
:
57+
80px
58+
;
59+
height
60+
:
61+
80px
62+
;
63+
border
64+
-
65+
radius
66+
:
67+
100px
68+
;
69+
border
70+
:
71+
10px
72+
solid
73+
;
74+
background
75+
:
76+
lime
77+
;
78+
}
79+
<
80+
/
81+
style
82+
>
83+
<
84+
fieldset
85+
>
86+
<
87+
/
88+
fieldset
89+
>
90+
<
91+
script
92+
>
93+
test
94+
(
95+
(
96+
)
97+
=
98+
>
99+
{
100+
assert_equals
101+
(
102+
document
103+
.
104+
elementFromPoint
105+
(
106+
20
107+
20
108+
)
109+
document
110+
.
111+
body
112+
)
113+
;
114+
}
115+
)
116+
;
117+
<
118+
/
119+
script
120+
>

0 commit comments

Comments
 (0)