ladybird/Libraries/LibWeb/CSS/CSSStyleValue.idl

8 lines
355 B
Text
Raw Normal View History

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