LibWeb: Implement CanvasRenderingContext2D.isContextLost()

Note that we don't implement the "context lost steps" yet, so this will
always return the initial value (false).
This commit is contained in:
Linus Groh 2021-12-27 14:35:38 +01:00 committed by Andreas Kling
commit 1298c27ca9
Notes: sideshowbarker 2024-07-17 22:07:18 +09:00
3 changed files with 12 additions and 0 deletions

View file

@ -336,6 +336,13 @@ void CanvasRenderingContext2D::reset()
reset_to_default_state();
}
// https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-iscontextlost
bool CanvasRenderingContext2D::is_context_lost()
{
// The isContextLost() method steps are to return this's context lost.
return m_context_lost;
}
// https://html.spec.whatwg.org/multipage/canvas.html#reset-the-rendering-context-to-its-default-state
void CanvasRenderingContext2D::reset_to_default_state()
{