mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 17:13:20 +00:00
13 lines
495 B
Text
13 lines
495 B
Text
![]() |
#import <CSS/CSSStyleValue.idl>
|
||
|
|
||
|
// https://drafts.css-houdini.org/css-typed-om-1/#stylepropertymapreadonly
|
||
|
// FIXME: [Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
|
||
|
[Exposed=(Window, Worker)]
|
||
|
interface StylePropertyMapReadOnly {
|
||
|
// FIXME: iterable<USVString, sequence<CSSStyleValue>>;
|
||
|
(undefined or CSSStyleValue) get(USVString property);
|
||
|
sequence<CSSStyleValue> getAll(USVString property);
|
||
|
boolean has(USVString property);
|
||
|
readonly attribute unsigned long size;
|
||
|
};
|