Bug 1598812 [wpt PR 20416] - Update interfaces/resize-observer.idl, a=testonly

Automatic update from web-platform-tests
Update interfaces/resize-observer.idl (#20416)

Source: https://github.com/tidoust/reffy-reports/blob/e8beb3c/ed/idl/resize-observer.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/615829088
--

wpt-commits: d3290a1bc112cc6bbcae33f0e65170efcd76e0df
wpt-pr: 20416
This commit is contained in:
autofoolip 2019-11-26 11:32:21 +00:00 коммит произвёл moz-wptsync-bot
Родитель 95554a636b
Коммит 82f25bb58a
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -25,9 +25,9 @@ callback ResizeObserverCallback = void (sequence<ResizeObserverEntry> entries, R
interface ResizeObserverEntry {
readonly attribute Element target;
readonly attribute DOMRectReadOnly contentRect;
readonly attribute ResizeObserverSize borderBoxSize;
readonly attribute ResizeObserverSize contentBoxSize;
readonly attribute ResizeObserverSize devicePixelContentBoxSize;
readonly attribute sequence<ResizeObserverSize> borderBoxSize;
readonly attribute sequence<ResizeObserverSize> contentBoxSize;
readonly attribute sequence<ResizeObserverSize> devicePixelContentBoxSize;
};
interface ResizeObserverSize {
@ -40,5 +40,5 @@ interface ResizeObserverSize {
interface ResizeObservation {
readonly attribute Element target;
readonly attribute ResizeObserverBoxOptions observedBox;
readonly attribute ResizeObserverSize lastReportedSize;
readonly attribute sequence<ResizeObserverSize> lastReportedSizes;
};