Skip to content

Commit

Permalink
Bug 1926764 [wpt PR 48797] - mark attrs as tentative since they were …
Browse files Browse the repository at this point in the history
…added mid-year to interop-tracked files , a=testonly

Automatic update from web-platform-tests
mark attrs as tentative since they were added mid-year to interop-tracked files  (#48797)

* move new role/description/colindextext/rowindextext to tentative; add back in 2025
Closes web-platform-tests/interop-accessibility#151

--

wpt-commits: 69d6994ff8d740311ed6d94f68a28ac2c1ec124e
wpt-pr: 48797

UltraBlame original commit: ba49e466a4e73a4954b181a031d5cf4293b8444a
  • Loading branch information
marco-c committed Nov 1, 2024
1 parent d0b05f2 commit 7d6981a
Show file tree
Hide file tree
Showing 6 changed files with 1,252 additions and 290 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,23 @@
"
ariaColIndex
"
/
/
"
ariaColIndexText
"
/
/
tentative
-
>
ElementInternals
-
accessibility
.
tentative
.
html
"
ariaColSpan
"
Expand All @@ -189,9 +203,23 @@
"
ariaDescribedByElements
"
/
/
"
ariaDescription
"
/
/
tentative
-
>
ElementInternals
-
accessibility
.
tentative
.
html
"
ariaDetailsElements
"
Expand Down Expand Up @@ -273,9 +301,23 @@
"
ariaRowIndex
"
/
/
"
ariaRowIndexText
"
/
/
tentative
-
>
ElementInternals
-
accessibility
.
tentative
.
html
"
ariaRowSpan
"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,200 @@
<
!
DOCTYPE
HTML
>
<
script
src
=
"
/
resources
/
testharness
.
js
"
>
<
/
script
>
<
script
src
=
"
/
resources
/
testharnessreport
.
js
"
>
<
/
script
>
<
script
>
class
TestElement
extends
HTMLElement
{
constructor
(
)
{
super
(
)
;
this
.
_internals
=
this
.
attachInternals
(
)
;
}
get
internals
(
)
{
return
this
.
_internals
;
}
set
internals
(
val
)
{
throw
"
Can
'
t
set
internals
!
"
;
}
}
customElements
.
define
(
"
test
-
element
"
TestElement
)
;
<
/
script
>
<
test
-
element
id
=
"
testElement
"
>
<
/
test
-
element
>
<
script
>
const
element
=
document
.
getElementById
(
"
testElement
"
)
;
/
/
tentative
properties
const
properties
=
[
"
ariaColIndexText
"
"
ariaDescription
"
"
ariaRowIndexText
"
]
;
for
(
const
property
of
properties
)
{
test
(
(
)
=
>
{
assert_inherits
(
element
.
internals
property
)
;
}
property
+
"
is
defined
in
ElementInternals
"
)
;
}
<
/
script
>
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,22 @@
<
script
>
/
/
tentative
-
>
AriaMixin
-
string
-
attributes
.
tentative
.
html
/
/
testReflectAttribute
(
'
Expand Down Expand Up @@ -433,6 +449,22 @@
'
)
;
/
/
tentative
-
>
AriaMixin
-
string
-
attributes
.
tentative
.
html
/
/
testReflectAttribute
(
'
Expand Down Expand Up @@ -502,6 +534,22 @@
'
)
;
/
/
tentative
-
>
AriaMixin
-
string
-
attributes
.
tentative
.
html
/
/
testReflectAttribute
(
'
Expand Down Expand Up @@ -1031,6 +1079,22 @@
'
)
;
/
/
tentative
-
>
AriaMixin
-
string
-
attributes
.
tentative
.
html
/
/
testReflectAttribute
(
'
Expand Down
Loading

0 comments on commit 7d6981a

Please sign in to comment.