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
This commit is contained in:
MacDue 2023-01-28 00:05:10 +00:00 committed by Linus Groh
commit f86b66dc2d
Notes: sideshowbarker 2024-07-17 01:04:12 +09:00
3 changed files with 10 additions and 3 deletions

View file

@ -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);