1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 02:47:34 +00:00

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
parent 2576af5db1
commit 1298c27ca9
3 changed files with 12 additions and 0 deletions

View file

@ -336,6 +336,13 @@ void CanvasRenderingContext2D::reset()
reset_to_default_state(); 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 // https://html.spec.whatwg.org/multipage/canvas.html#reset-the-rendering-context-to-its-default-state
void CanvasRenderingContext2D::reset_to_default_state() void CanvasRenderingContext2D::reset_to_default_state()
{ {

View file

@ -72,6 +72,7 @@ public:
void save(); void save();
void restore(); void restore();
void reset(); void reset();
bool is_context_lost();
void reset_to_default_state(); void reset_to_default_state();
@ -97,6 +98,9 @@ private:
DrawingState m_drawing_state; DrawingState m_drawing_state;
Vector<DrawingState> m_drawing_state_stack; Vector<DrawingState> m_drawing_state_stack;
// https://html.spec.whatwg.org/multipage/canvas.html#concept-canvas-context-lost
bool m_context_lost { false };
Gfx::Path m_path; Gfx::Path m_path;
}; };

View file

@ -34,6 +34,7 @@ interface CanvasRenderingContext2D {
undefined save(); undefined save();
undefined restore(); undefined restore();
undefined reset(); undefined reset();
boolean isContextLost();
readonly attribute HTMLCanvasElement canvas; readonly attribute HTMLCanvasElement canvas;