Skip to content

Commit

Permalink
Moves SVG image role test to a tentative file
Browse files Browse the repository at this point in the history
Closes web-platform-tests/interop-accessibility#96

Moves SVG image role test to a tentative file outside of the Interop 2024 focus area files, while dispute is resolved.
  • Loading branch information
cookiecrook authored and BruceDai committed Mar 25, 2024
1 parent f695559 commit 58f8ad8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 5 deletions.
32 changes: 32 additions & 0 deletions svg-aam/role/role-img.tentative.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!doctype html>
<html>
<head>
<title>SVG-AAM Image Role Verification Tests</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="/wai-aria/scripts/aria-utils.js"></script>
</head>
<body>


<p>Currently tentative due to <a href="https://github.com/w3c/svg-aam/issues/32">SVG-AAM #32: SVG image role should align with HTML on missing versus empty alt</a>.</p>

<!-- [sic] included here b/c the spec says unlabeled, unrendered images are generic, but the spec may be wrong. -->
<!-- Once https://github.com/w3c/svg-aam/issues/32 is resolved, this test can be moved to another file or have `.tentative` removed. -->
<image data-testname="el-image (empty label due to missing image>title element)" data-expectedrole="image" data-expectedlabel="" class="ex-role-label"></image>

<!-- Additional tests -->
<image data-testname="el-image (label from w/ aria-label)" aria-label="x" data-expectedrole="image" data-expectedlabel="x" class="ex-role-label"></image>
<image data-testname="el-image (label from image>title element)" data-expectedrole="image" data-expectedlabel="x" class="ex-role-label"><title>x</title></image>
<image data-testname="el-image (generic, explicitly empty image>title element)" class="ex-generic"><title></title></image>

<script>
AriaUtils.verifyRolesAndLabelsBySelector(".ex-role-label");
AriaUtils.verifyGenericRolesBySelector(".ex-generic");
</script>

</body>
</html>
6 changes: 1 addition & 5 deletions svg-aam/role/roles-generic.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@ <h2>Simple Elements</h2>
<ellipse data-testname="el-ellipse" class="ex-generic"></ellipse>
<foreignObject data-testname="el-foreignObject" class="ex-generic"></foreignObject>
<g data-testname="el-g" class="ex-generic"></g>

<!-- [sic] included here b/c the spec says unlabeled, unrendered images are generic, but the spec is wrong. -->
<!-- Once https://github.com/w3c/svg-aam/issues/32 is resolved, this test can be moved to another file. -->
<image data-testname="el-image" data-expectedrole="image" class="ex"></image>

<!-- image -> in ./role-img.tentative.html -->
<line data-testname="el-line" class="ex-generic"></line>
<!-- skipped: mesh -->
<path data-testname="el-path" class="ex-generic"></path>
Expand Down

0 comments on commit 58f8ad8

Please sign in to comment.