mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-13 04:52:23 +00:00
LibWeb: Stub out SVGMaskElement
Just enough that we stop creating layout nodes for mask elements, which was making some SVG content look very wrong. :^)
This commit is contained in:
parent
adf70b8a16
commit
9e22f01eba
Notes:
sideshowbarker
2024-07-17 00:23:42 +09:00
Author: https://github.com/awesomekling
Commit: 9e22f01eba
Pull-request: https://github.com/SerenityOS/serenity/pull/20474
10 changed files with 99 additions and 0 deletions
11
Userland/Libraries/LibWeb/SVG/SVGMaskElement.idl
Normal file
11
Userland/Libraries/LibWeb/SVG/SVGMaskElement.idl
Normal file
|
@ -0,0 +1,11 @@
|
|||
[Exposed=Window]
|
||||
interface SVGMaskElement : SVGElement {
|
||||
|
||||
// FIXME: readonly attribute SVGAnimatedEnumeration maskUnits;
|
||||
// FIXME: readonly attribute SVGAnimatedEnumeration maskContentUnits;
|
||||
// FIXME: readonly attribute SVGAnimatedLength x;
|
||||
// FIXME: readonly attribute SVGAnimatedLength y;
|
||||
// FIXME: readonly attribute SVGAnimatedLength width;
|
||||
// FIXME: readonly attribute SVGAnimatedLength height;
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue