mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-05 15:49:15 +00:00
LibWeb/CSS: Implement CSSNumericArray
This commit is contained in:
parent
6c8876cdb8
commit
a46c980629
Notes:
github-actions[bot]
2025-08-29 10:00:05 +00:00
Author: https://github.com/AtkinsSJ
Commit: a46c980629
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5955
Reviewed-by: https://github.com/trflynn89
8 changed files with 113 additions and 0 deletions
11
Libraries/LibWeb/CSS/CSSNumericArray.idl
Normal file
11
Libraries/LibWeb/CSS/CSSNumericArray.idl
Normal file
|
@ -0,0 +1,11 @@
|
|||
#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>;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue