[Webkit-unassigned] [Bug 113343] border-radius clipping a canvas does not always clip

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Mar 26 16:39:47 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=113343





--- Comment #2 from Rafael Brandao <rafael.lobo at openbossa.org>  2013-03-26 16:42:14 PST ---
If I change the test to do the following, then the second render clips as expected:

render = function() {
    ctx.fillStyle = "#ff0000";
    ctx.fillRect(0, 0, 400, 300);
}

render2 = function() {
    render();
    document.getElementById("box").style.overflow = "hidden";
}

render();
setTimeout("render2()", 2000);

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list