mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-04 23:29:52 +00:00
Nothing yet produces this, and the useful parts of get() and get_all() will have to wait until type reification is implemented.
12 lines
495 B
Text
12 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;
|
|
};
|