mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
10 lines
314 B
Plaintext
10 lines
314 B
Plaintext
#import <CSS/CSSNumericValue.idl>
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssnumericarray
|
|
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
|
interface CSSNumericArray {
|
|
iterable<CSSNumericValue>;
|
|
readonly attribute unsigned long length;
|
|
getter CSSNumericValue (unsigned long index);
|
|
};
|