1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:27:45 +00:00

LibWeb: Add SVGURIReference

This commit is contained in:
Luke Wilde 2023-11-14 00:20:44 +00:00 committed by Andreas Kling
parent 55646893d8
commit 968bec9844
4 changed files with 65 additions and 2 deletions

View file

@ -1,3 +1,6 @@
#import <SVG/SVGAnimatedString.idl>
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGURIReference
interface mixin SVGURIReference {
// FIXME: [SameObject] readonly attribute SVGAnimatedString href;
[SameObject] readonly attribute SVGAnimatedString href;
};