forked from web-platform-tests/wpt
-
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.
Browse files
Browse the repository at this point in the history
Moves SVG image role test to a tentative file outside of the Interop 2024 focus area files, while dispute is resolved.
- Loading branch information
1 parent
5407936
commit 0469626
Showing
2 changed files
with
34 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!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. --> | ||
<image data-testname="el-image (missing alt attribute)" data-expectedrole="image" class="ex"></image> | ||
|
||
<!-- Undisputed tests --> | ||
<image data-testname="el-image (non-empty aria-label attribute)" aria-label="x" data-expectedrole="image" class="ex"></image> | ||
<image data-testname="el-image (non-empty alt attribute)" alt="x" data-expectedrole="image" class="ex"></image> | ||
<image data-testname="el-image (non-empty title attribute)" title="x" data-expectedrole="image" class="ex"></image> | ||
<image data-testname="el-image (explicitly empty alt attribute)" alt="" class="ex-generic"></image> | ||
|
||
<script> | ||
AriaUtils.verifyRolesBySelector(".ex"); | ||
AriaUtils.verifyGenericRolesBySelector(".ex-generic"); | ||
</script> | ||
|
||
</body> | ||
</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