-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1926764 [wpt PR 48797] - mark attrs as tentative since they were …
…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
Showing
6 changed files
with
1,252 additions
and
290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
200 changes: 200 additions & 0 deletions
200
testing/web-platform/tests/custom-elements/ElementInternals-accessibility.tentative.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.