mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-25 12:32:53 +00:00
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.
6 lines
226 B
Text
6 lines
226 B
Text
// https://drafts.csswg.org/resize-observer-1/#resizeobserversize
|
|
[Exposed=Window]
|
|
interface ResizeObserverSize {
|
|
readonly attribute unrestricted double inlineSize;
|
|
readonly attribute unrestricted double blockSize;
|
|
};
|