mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
12 lines
442 B
Text
12 lines
442 B
Text
![]() |
#import <CSS/CSSNumericValue.idl>
|
||
|
|
||
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssnumericarray
|
||
|
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
||
|
interface CSSNumericArray {
|
||
|
readonly attribute unsigned long length;
|
||
|
getter CSSNumericValue (unsigned long index);
|
||
|
|
||
|
// FIXME: Different order than the spec, because IDLParser requires that this comes after the indexed property getter.
|
||
|
iterable<CSSNumericValue>;
|
||
|
};
|