Bug 63463

Summary: AX: Support HTML5 Canvas AX with hit regions
Product: WebKit Reporter: Charles Pritchard <chuck>
Component: AccessibilityAssignee: Charles Pritchard <chuck>
Status: RESOLVED INVALID    
Severity: Normal CC: chuck, faulkner.steve, jcraig, lquinn, mdelaney7, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   

Description Charles Pritchard 2011-06-27 09:06:02 PDT
Currently, mobile safari treats Canvas as an untitled image. Activating pointer events on the element is difficult.

Related issue/patch for keyboard events:
https://bugs.webkit.org/show_bug.cgi?id=50126
Comment 1 James Craig 2013-04-15 16:38:45 PDT
Add a test case of accessible canvas example. Otherwise will have to close as insufficient information.
Comment 2 Charles Pritchard 2013-04-15 17:04:29 PDT
<canvas role="button" aria-describedby="button" onclick="button.onclick()">
<button id="button">I am a button</button>
</canvas>

Mobile Safari should support the new addHitRegion semantics:
http://www.w3.org/html/wg/drafts/2dcontext/html5_canvas/#dom-context-2d-addhitregion

<canvas id="canvas" role="application">
<button id="button">I am a button</button>
</canvas>

var ctx = canvas.getContext('2d');
ctx.rect(0,0,100,100);
ctx.addHitRegion({control: button});



Those two items should both work in VoiceOver with Mobile Safari to allow a user to drag their finger over the rectangle with VoiceOver reporting that the area is a button. In the latter case, only the first 100x100 pixels (the rect).
Comment 3 James Craig 2013-04-17 08:14:18 PDT
Please upload that as an HTML test case.
Comment 4 James Craig 2013-11-19 10:37:30 PST
<rdar://problem/15504587>
Comment 5 James Craig 2013-11-19 11:23:05 PST
Note that button is a null reference in your partial example, I assume you meant to use document.getElementById('button');
Comment 6 Charles Pritchard 2014-05-29 08:25:19 PDT
Chrome (Blink):
https://code.google.com/p/chromium/issues/detail?id=328961
Code review/patch (Blink):
https://codereview.chromium.org/287163007/

Firefox (Gecko):
https://bugzilla.mozilla.org/show_bug.cgi?id=966591
https://bugzilla.mozilla.org/show_bug.cgi?id=979692


Please note the following code sample may be outdated. Will check back in a few weeks to see if Blink and Gecko have converged and have an example using a DOM element.


Code sample (from Firefox):

<canvas id="input"></canvas>

var ctx = input.getContext("2d");
ctx.beginPath();
ctx.rect(20, 20, 100, 75);
ctx.fill();
ctx.addHitRegion({id: "a"});


var regionId = "";
input.addEventListener('mousedown', function(evt){
 regionId = evt.region;
});
Comment 7 James Craig 2014-05-29 16:37:06 PDT
Please upload that as an HTML test case.