mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
13 lines
576 B
Plaintext
13 lines
576 B
Plaintext
// https://drafts.css-houdini.org/css-typed-om-1/#cssunparsedvalue
|
|
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
|
interface CSSUnparsedValue : CSSStyleValue {
|
|
constructor(sequence<CSSUnparsedSegment> members);
|
|
iterable<CSSUnparsedSegment>;
|
|
readonly attribute unsigned long length;
|
|
getter CSSUnparsedSegment (unsigned long index);
|
|
setter undefined (unsigned long index, CSSUnparsedSegment val);
|
|
};
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#typedefdef-cssunparsedsegment
|
|
typedef (USVString or CSSVariableReferenceValue) CSSUnparsedSegment;
|