1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:18:12 +00:00

LibWeb: Add barebones CanvasGradient object

Also add the CanvasRenderingContext2D APIs to go along with it.
Note that it can't be used for anything yet.
This commit is contained in:
Andreas Kling 2022-02-03 20:08:27 +01:00
parent 545ec334f0
commit dc3bf32307
10 changed files with 130 additions and 0 deletions

View file

@ -3451,6 +3451,7 @@ void generate_prototype_implementation(IDL::Interface const& interface)
#include <LibWeb/Bindings/CSSRuleWrapperFactory.h>
#include <LibWeb/Bindings/CSSStyleDeclarationWrapper.h>
#include <LibWeb/Bindings/CSSStyleSheetWrapper.h>
#include <LibWeb/Bindings/CanvasGradientWrapper.h>
#include <LibWeb/Bindings/CanvasRenderingContext2DWrapper.h>
#include <LibWeb/Bindings/CommentWrapper.h>
#include <LibWeb/Bindings/DOMImplementationWrapper.h>