Descriptioncanvas: fix bugs on HTMLCanvasElement::copiedImage()
HTMLCanvasElement::copiedImage() has two bugs:
1. Must remove copiedImage after swap buffer.
It's because copiedImage(BackBuffer) must return transparent image after swap buffer.
2. Must keep copiedImage of FrontBuffer and BackBuffer separately.
It's because there is a potential bug that HTMLCanvasElement::copiedImage(FrontBuffer)
returns BackBuffer, because m_copiedImages is used to cache both.
However the 2nd bug is hard to be reproduced because copiedImage(FrontBuffer) is
called by only CSSCanvasValue::image() and Editor::copyImage() and
copiedImage(BackBuffer) is called by only ImageBitmap ctor.
TEST=fast/canvas/canvas-createImageBitmap-webgl.html
BUG=438986
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=187239
Patch Set 1 #Patch Set 2 : Don't use DrawingBuffer::Client #Patch Set 3 : drop vector #
Total comments: 4
Patch Set 4 : rephrase this test so that the expectations don't contain failure #
Messages
Total messages: 15 (3 generated)
|