2025-08-08 08:57:23 -03:00
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssstylevalue
|
2025-08-14 07:13:02 -03:00
|
|
|
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
2025-08-08 08:57:23 -03:00
|
|
|
interface CSSStyleValue {
|
|
|
|
|
stringifier;
|
2025-08-14 09:55:45 -03:00
|
|
|
[Exposed=Window] static CSSStyleValue parse(USVString property, USVString cssText);
|
|
|
|
|
[Exposed=Window] static sequence<CSSStyleValue> parseAll(USVString property, USVString cssText);
|
2025-08-08 08:57:23 -03:00
|
|
|
};
|