Summary: | AX: ARIA role should not be set outside the expected context for gridcell, rowheader and columnheader | ||
---|---|---|---|
Product: | WebKit | Reporter: | Howard Edwards <howarde.edwards> |
Component: | Accessibility | Assignee: | Nobody <webkit-unassigned> |
Status: | NEW --- | ||
Severity: | Normal | CC: | andresg_22, webkit-bug-importer |
Priority: | P2 | Keywords: | InRadar |
Version: | WebKit Nightly Build | ||
Hardware: | All | ||
OS: | All |
Description
Howard Edwards
2023-08-17 07:09:05 PDT
- See https://github.com/web-platform-tests/interop-2023-accessibility-testing/issues/14 - See https://github.com/web-platform-tests/wpt/pull/41323 > <div role="gridcell" data-testname="should not have role gridcell outside of
> row" data-expectedrole="none" class="ex">x</div>
> FAIL message: assert_equals: <div role="gridcell" data-testname="orphaned
> gridcell outside the context of row" data-expectedrole="none"
> class="ex">x</div> expected "none" but got "gridcell"
>
>
> <div role="rowheader" data-testname="should not have role rowheader outside
> of row" data-expectedrole="none" class="ex">x</div>
> FAIL message: assert_equals: <div role="rowheader" data-testname="orphaned
> rowheader outside the context of row" data-expectedrole="none"
> class="ex">x</div> expected "none" but got "rowheader"
>
>
> <div role="columnheader" data-testname="should not have role columnheader
> outside of row" data-expectedrole="none" class="ex">x</div>
> FAIL message: assert_equals: <div role="columnheader"
> data-testname="orphaned columnheader outside the context of row"
> data-expectedrole="none" class="ex">x</div> expected "none" but got
> "columnheader"
Correction on data-testname attributes:
<div role="gridcell" data-testname="orphaned gridcell outside the context of row" data-expectedrole="none" class="ex">x</div>
FAIL message: assert_equals: <div role="gridcell" data-testname="orphaned gridcell outside the context of row" data-expectedrole="none" class="ex">x</div> expected "none" but got "gridcell"
<div role="rowheader" data-testname="orphaned rowheader outside the context of row" data-expectedrole="none" class="ex">x</div>
FAIL message: assert_equals: <div role="rowheader" data-testname="orphaned rowheader outside the context of row" data-expectedrole="none" class="ex">x</div> expected "none" but got "rowheader"
<div role="columnheader" data-testname="orphaned columnheader outside the context of row" data-expectedrole="none" class="ex">x</div>
FAIL message: assert_equals: <div role="columnheader" data-testname="orphaned columnheader outside the context of row" data-expectedrole="none" class="ex">x</div> expected "none" but got "columnheader"
|