mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 07:44:59 +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;
|
|
};
|