mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
This change adds computation of ARIA roles for a number of SVG elements for which, if the element meets the SVG spec criteria for inclusion in the accessibility tree, the computed ARIA role should be “graphics-symbol”, and should otherwise be “generic”. This change also adds similar role computation for the SVG foreignObject element (the role for which, if the element meets the SVG spec criteria for inclusion in the accessibility tree, should be “group”, and should otherwise be “generic”).
43 lines
1.9 KiB
HTML
43 lines
1.9 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>SVG-AAM Generic 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>Tests ONLY the default <code>generic</code> mappings defined in <a href="https://w3c.github.io/svg-aam/#include_elements">SVG-AAM: 5.1.2 Including Elements in the Accessibility Tree</a>.</p>
|
|
|
|
<h2>Simple Elements</h2>
|
|
<!-- Note: adding an inoccuous label, tabindex, or some other accessible marker may cause the computedrole result to change. -->
|
|
<svg>
|
|
<!-- Some elements skipped: never-rendered elements can return unpredicable/undefined/unspecified values for computedrole. -->
|
|
<circle data-testname="el-circle" class="ex-generic"></circle>
|
|
<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>
|
|
<!-- 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>
|
|
<polygon data-testname="el-polygon" class="ex-generic"></polygon>
|
|
<polyline data-testname="el-polyline" class="ex-generic"></polyline>
|
|
<rect data-testname="el-rect" class="ex-generic"></rect>
|
|
<!-- blocked: textPath -> https://w3c.github.io/svg-aam/#textpath-tspan-mappings-issue-->
|
|
<!-- blocked: tspan -> https://w3c.github.io/svg-aam/#textpath-tspan-mappings-issue -->
|
|
<!-- skipped: use -->
|
|
</svg>
|
|
|
|
<script>
|
|
AriaUtils.verifyGenericRolesBySelector(".ex-generic");
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|