ladybird/Userland/Libraries/LibWeb/ResizeObserver/ResizeObserverSize.idl
Aliaksandr Kalenik fb8edcea00 LibWeb: Flesh out implementation of ResizeObserver interfaces
Adds the initial implementation for interfaces defined in the
ResizeObserver specification. These interfaces will be used to
construct and send observation events in the upcoming changes.
2024-02-20 10:55:10 +01:00

7 lines
226 B
Plaintext

// https://drafts.csswg.org/resize-observer-1/#resizeobserversize
[Exposed=Window]
interface ResizeObserverSize {
readonly attribute unrestricted double inlineSize;
readonly attribute unrestricted double blockSize;
};