| Index: sky/engine/core/html/HTMLCanvasElement.cpp
|
| diff --git a/sky/engine/core/html/HTMLCanvasElement.cpp b/sky/engine/core/html/HTMLCanvasElement.cpp
|
| index 048e2e3b553f92981c6516b23ed43082a8752b2a..10c656bd0eeebd505bb0fbb5933ddddcf57259fb 100644
|
| --- a/sky/engine/core/html/HTMLCanvasElement.cpp
|
| +++ b/sky/engine/core/html/HTMLCanvasElement.cpp
|
| @@ -216,14 +216,12 @@ void HTMLCanvasElement::resetDirtyRect()
|
| void HTMLCanvasElement::finalizeFrameMicrotask()
|
| {
|
| // This method gets invoked if didDraw was called earlier in the current task.
|
| - ASSERT(!m_dirtyRect.isEmpty());
|
| if (is3D()) {
|
| didFinalizeFrame();
|
| } else {
|
| ASSERT(hasImageBuffer());
|
| - m_imageBuffer->finalizeFrame(m_dirtyRect);
|
| + m_imageBuffer->finalizeFrame();
|
| }
|
| - ASSERT(m_dirtyRect.isEmpty());
|
| ASSERT(m_finalizeFrameTask.IsCancelled());
|
| }
|
|
|
|
|