mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
10 lines
445 B
Plaintext
10 lines
445 B
Plaintext
// https://drafts.csswg.org/resize-observer-1/#resize-observer-entry-interface
|
|
[Exposed=Window]
|
|
interface ResizeObserverEntry {
|
|
readonly attribute Element target;
|
|
readonly attribute DOMRectReadOnly contentRect;
|
|
readonly attribute FrozenArray<ResizeObserverSize> borderBoxSize;
|
|
readonly attribute FrozenArray<ResizeObserverSize> contentBoxSize;
|
|
readonly attribute FrozenArray<ResizeObserverSize> devicePixelContentBoxSize;
|
|
};
|