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 https://github.com/web-platform-tests/interop-accessibility/issues/151 -- wpt-commits: 69d6994ff8d740311ed6d94f68a28ac2c1ec124e wpt-pr: 48797
87 lines
2.0 KiB
HTML
87 lines
2.0 KiB
HTML
<!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");
|
|
const properties = [
|
|
"role",
|
|
"ariaActiveDescendantElement",
|
|
"ariaAtomic",
|
|
"ariaAutoComplete",
|
|
"ariaBrailleLabel",
|
|
"ariaBrailleRoleDescription",
|
|
"ariaBusy",
|
|
"ariaChecked",
|
|
"ariaColCount",
|
|
"ariaColIndex",
|
|
// "ariaColIndexText", // tentative -> ElementInternals-accessibility.tentative.html
|
|
"ariaColSpan",
|
|
"ariaControlsElements",
|
|
"ariaCurrent",
|
|
"ariaDescribedByElements",
|
|
// "ariaDescription", // tentative -> ElementInternals-accessibility.tentative.html
|
|
"ariaDetailsElements",
|
|
"ariaDisabled",
|
|
"ariaErrorMessageElements",
|
|
"ariaExpanded",
|
|
"ariaFlowToElements",
|
|
"ariaHasPopup",
|
|
"ariaHidden",
|
|
"ariaInvalid",
|
|
"ariaKeyShortcuts",
|
|
"ariaLabel",
|
|
"ariaLabelledByElements",
|
|
"ariaLevel",
|
|
"ariaLive",
|
|
"ariaModal",
|
|
"ariaMultiLine",
|
|
"ariaMultiSelectable",
|
|
"ariaOrientation",
|
|
"ariaOwnsElements",
|
|
"ariaPlaceholder",
|
|
"ariaPosInSet",
|
|
"ariaPressed",
|
|
"ariaReadOnly",
|
|
"ariaRelevant",
|
|
"ariaRequired",
|
|
"ariaRoleDescription",
|
|
"ariaRowCount",
|
|
"ariaRowIndex",
|
|
// "ariaRowIndexText", // tentative -> ElementInternals-accessibility.tentative.html
|
|
"ariaRowSpan",
|
|
"ariaSelected",
|
|
"ariaSetSize",
|
|
"ariaSort",
|
|
"ariaValueMax",
|
|
"ariaValueMin",
|
|
"ariaValueNow",
|
|
"ariaValueText"
|
|
];
|
|
for (const property of properties) {
|
|
test(() => {
|
|
assert_inherits(element.internals, property);
|
|
}, property + " is defined in ElementInternals");
|
|
}
|
|
test(() => assert_false('ariaErrorMessageElement' in element.internals), 'ariaErrorMessageElement is not defined in ElementInternals')
|
|
</script>
|