1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:47:44 +00:00

LibWeb: Add empty IDL bindings for current SVG elements

Nothing in them right now as the classes don't contain the IDL
methods.
This commit is contained in:
Luke 2020-10-02 20:57:28 +01:00 committed by Andreas Kling
parent 6351a56d27
commit 9dee140a9f
14 changed files with 62 additions and 1 deletions

View file

@ -136,6 +136,14 @@ namespace Web::HighResolutionTime {
class Performance;
}
namespace Web::SVG {
class SVGElement;
class SVGGeometryElement;
class SVGGraphicsElement;
class SVGPathElement;
class SVGSVGElement;
}
namespace Web {
class EventHandler;
class Frame;
@ -248,6 +256,11 @@ class MouseEventWrapper;
class NodeWrapper;
class PerformanceWrapper;
class ScriptExecutionContext;
class SVGElementWrapper;
class SVGGeometryElementWrapper;
class SVGGraphicsElementWrapper;
class SVGPathElementWrapper;
class SVGSVGElementWrapper;
class TextWrapper;
class UIEventWrapper;
class WindowObject;