[Bug 11431] should mention that .toDataURL() for image/jpeg acts as if the image was composited against black

http://www.w3.org/Bugs/Public/show_bug.cgi?id=11431

--- Comment #7 from Noel Gordon <noel.gordon@gmail.com> 2010-12-20 07:38:59 UTC ---
I've posted a webkit patch to make chromium conform with the standard for
review https://bugs.webkit.org/attachment.cgi?id=76964&action=prettypatch

Chrome 10 dev Win32 + above patch
 Input: rgba(0,63,255,1.0); format: image/jpeg; output: rgba(0,63,255,1)
 Input: rgba(0,63,255,1.0); format: image/jpeg; output: rgba(0,63,255,1)
 Input: rgba(0,63,255,0.5); format: image/jpeg; output: rgba(1,31,127,1)
 Input: rgba(0,63,255,0.5); format: image/jpeg; output: rgba(1,31,127,1)
 Input: rgba(0,63,255,0.1); format: image/jpeg; output: rgba(0,6,25,1)
 Input: rgba(0,63,255,0.1); format: image/jpeg; output: rgba(0,6,25,1)
 Input: rgba(0,63,255,0.0); format: image/jpeg; output: rgba(0,0,0,1)
 Input: rgba(0,63,255,0.0); format: image/jpeg; output: rgba(0,0,0,1)

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Monday, 20 December 2010 07:39:02 UTC