@@ -105,10 +105,12 @@ test('boolean attribute values are set to their attribute name if true and remov
105
105
< option x-bind:selected ="isSet "> </ option >
106
106
< textarea x-bind:autofocus ="isSet "> </ textarea >
107
107
< dl x-bind:itemscope ="isSet "> </ dl >
108
- < form x-bind:novalidate ="isSet "> </ form >
108
+ < form
109
+ x-bind:novalidate ="isSet "
110
+ x-bind:inert ="isSet "
111
+ > </ form >
109
112
< iframe
110
113
x-bind:allowfullscreen ="isSet "
111
- x-bind:allowpaymentrequest ="isSet "
112
114
> </ iframe >
113
115
< button x-bind:formnovalidate ="isSet "> </ button >
114
116
< audio
@@ -121,6 +123,11 @@ test('boolean attribute values are set to their attribute name if true and remov
121
123
< track x-bind:default ="isSet " />
122
124
< img x-bind:ismap ="isSet " />
123
125
< ol x-bind:reversed ="isSet "> </ ol >
126
+ < template
127
+ x-bind:shadowrootclonable ="isSet "
128
+ x-bind:shadowrootdelegatesfocus ="isSet "
129
+ x-bind:shadowrootserializable ="isSet "
130
+ > </ template >
124
131
</ div >
125
132
` ,
126
133
( { get } ) => {
@@ -135,7 +142,6 @@ test('boolean attribute values are set to their attribute name if true and remov
135
142
get ( 'dl' ) . should ( haveAttribute ( 'itemscope' , 'itemscope' ) )
136
143
get ( 'form' ) . should ( haveAttribute ( 'novalidate' , 'novalidate' ) )
137
144
get ( 'iframe' ) . should ( haveAttribute ( 'allowfullscreen' , 'allowfullscreen' ) )
138
- get ( 'iframe' ) . should ( haveAttribute ( 'allowpaymentrequest' , 'allowpaymentrequest' ) )
139
145
get ( 'button' ) . should ( haveAttribute ( 'formnovalidate' , 'formnovalidate' ) )
140
146
get ( 'audio' ) . should ( haveAttribute ( 'autoplay' , 'autoplay' ) )
141
147
get ( 'audio' ) . should ( haveAttribute ( 'controls' , 'controls' ) )
@@ -145,6 +151,9 @@ test('boolean attribute values are set to their attribute name if true and remov
145
151
get ( 'track' ) . should ( haveAttribute ( 'default' , 'default' ) )
146
152
get ( 'img' ) . should ( haveAttribute ( 'ismap' , 'ismap' ) )
147
153
get ( 'ol' ) . should ( haveAttribute ( 'reversed' , 'reversed' ) )
154
+ get ( 'template' ) . should ( haveAttribute ( 'shadowrootclonable' , 'shadowrootclonable' ) )
155
+ get ( 'template' ) . should ( haveAttribute ( 'shadowrootdelegatesfocus' , 'shadowrootdelegatesfocus' ) )
156
+ get ( 'template' ) . should ( haveAttribute ( 'shadowrootserializable' , 'shadowrootserializable' ) )
148
157
149
158
get ( '#setToFalse' ) . click ( )
150
159
0 commit comments