mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibWeb/SVG: SVGScriptElement includes SVGURIReference
This commit is contained in:
parent
796de74956
commit
fbb5bc471d
Notes:
sideshowbarker
2024-07-17 07:14:09 +09:00
Author: https://github.com/jamierocks
Commit: fbb5bc471d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/666
3 changed files with 7 additions and 2 deletions
|
@ -7,11 +7,14 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibWeb/SVG/SVGElement.h>
|
||||
#include <LibWeb/SVG/SVGURIReference.h>
|
||||
|
||||
namespace Web::SVG {
|
||||
|
||||
// https://www.w3.org/TR/SVG/interact.html#InterfaceSVGScriptElement
|
||||
class SVGScriptElement : public SVGElement {
|
||||
class SVGScriptElement
|
||||
: public SVGElement
|
||||
, public SVGURIReferenceMixin<SupportsXLinkHref::Yes> {
|
||||
WEB_PLATFORM_OBJECT(SVGScriptElement, SVGElement);
|
||||
JS_DECLARE_ALLOCATOR(SVGScriptElement);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue