1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
4 <script src="../resources/js-test-pre.js"></script>
9 <svg id="svg" width="4in" height="4in" role="button" aria-label="clickable circle" onclick="svgClicked();">
10 <circle cx="2in" cy="2in" r="1.75in" fill="green" stroke="black">
11 <title>Clickable circle</title>
16 <p id="description"></p>
17 <div id="console"></div>
21 window.jsTestIsAsync = true;
23 description("This tests that AXPress works on SVG elements");
25 function svgClicked() {
26 debug("SVG element WAS clicked with accessibility");
30 if (window.accessibilityController) {
31 var svg = accessibilityController.accessibleElementById("svg");
37 <script src="../resources/js-test-post.js"></script>