ladybird/Libraries/LibWeb/CSS/CSSStyleValue.idl
Sam Atkins 888cb038e8 LibWeb/CSS: Expose a couple of types on PaintWorklet and LayoutWorklet
This has no actual effect, but it's nice to remove the FIXMEs.
2025-08-15 09:21:28 +02:00

7 lines
369 B
Text

// https://drafts.css-houdini.org/css-typed-om-1/#cssstylevalue
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
interface CSSStyleValue {
stringifier;
[FIXME, Exposed=Window] static CSSStyleValue parse(USVString property, USVString cssText);
[FIXME, Exposed=Window] static sequence<CSSStyleValue> parseAll(USVString property, USVString cssText);
};