diff options
author | MacDue <macdue@dueutil.tech> | 2023-01-28 00:05:10 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-28 00:26:48 +0000 |
commit | f86b66dc2d139ab43efeaada00e741c5227d1b93 (patch) | |
tree | efbd711ac8145f8c57892e1d904459bf03f25207 /Userland/Libraries/LibWeb/HTML/Canvas | |
parent | 8dc4e05ecfc1d5176acf2d64012685dd52ee12bc (diff) | |
download | serenity-f86b66dc2d139ab43efeaada00e741c5227d1b93.zip |
LibWeb: Throw exception if any canvas radial gradient radius is < 0
As per the specification:
https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-createradialgradient
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/Canvas')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/Canvas/CanvasFillStrokeStyles.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/Canvas/CanvasFillStrokeStyles.h b/Userland/Libraries/LibWeb/HTML/Canvas/CanvasFillStrokeStyles.h index 3ed170f201..5ff5703610 100644 --- a/Userland/Libraries/LibWeb/HTML/Canvas/CanvasFillStrokeStyles.h +++ b/Userland/Libraries/LibWeb/HTML/Canvas/CanvasFillStrokeStyles.h @@ -55,7 +55,7 @@ public: return my_drawing_state().stroke_style.to_js_fill_or_stoke_style(); } - JS::NonnullGCPtr<CanvasGradient> create_radial_gradient(double x0, double y0, double r0, double x1, double y1, double r1) + WebIDL::ExceptionOr<JS::NonnullGCPtr<CanvasGradient>> create_radial_gradient(double x0, double y0, double r0, double x1, double y1, double r1) { auto& realm = static_cast<IncludingClass&>(*this).realm(); return CanvasGradient::create_radial(realm, x0, y0, r0, x1, y1, r1); |