- From: <bugzilla@jessica.w3.org>
- Date: Mon, 13 Jan 2014 23:22:02 +0000
- To: public-html-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=23986
--- Comment #4 from Philippe Le Hegaret <plh@w3.org> ---
to clarify the case here, here is a more detailed code:
[[
var myCanvas = document.createElement("canvas");
var myInput = document.createElement("input");
myCanvas.width = 200;
myCanvas.height = 200;
canvas.appendChild(myInput);
document.body.appendChild(myCanvas);
var ctx = canvas.getContext("2D");
myInput.focus();
ctx.drawSystemFocusRing(myInput);
]]
--
You are receiving this mail because:
You are the QA Contact for the bug.
Received on Monday, 13 January 2014 23:22:04 UTC