Produce JS-visible string results as UTF-16 at their source, including numeric formatting, BigInt and BigFraction formatting, URI encoding, console formatting, parser errors, regular expression errors, Intl and Temporal records, LibUnicode locale boundaries, and LibWeb bindings. Handle fractional radix formatting through the UTF-16 builder view.
12 lines
581 B
Text
12 lines
581 B
Text
// 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 (Utf16USVString or CSSVariableReferenceValue) CSSUnparsedSegment;
|