2025-08-19 08:21:27 -03:00
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssnumericarray
|
|
|
|
|
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
|
|
|
|
interface CSSNumericArray {
|
2025-09-02 03:30:13 -03:00
|
|
|
iterable<CSSNumericValue>;
|
2025-08-19 08:21:27 -03:00
|
|
|
readonly attribute unsigned long length;
|
|
|
|
|
getter CSSNumericValue (unsigned long index);
|
|
|
|
|
};
|