- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Wed, 17 Aug 2022 20:30:18 +0000
- To: public-css-archive@w3.org
Loirooriol has just created a new issue for https://github.com/w3c/csswg-drafts:
== [resize-observer] isActive missing from ResizeObservation interface ==
https://drafts.csswg.org/resize-observer-1/#dom-resizeobservation-isactive descrives a `isActive()` method for [`ResizeObservation`](https://drafts.csswg.org/resize-observer-1/#resizeobservation), but it's not in the interface definition:
```js
interface ResizeObservation {
constructor(Element target, ResizeObserverBoxOptions observedBox);
readonly attribute Element target;
readonly attribute ResizeObserverBoxOptions observedBox;
readonly attribute FrozenArray<ResizeObserverSize> lastReportedSizes;
};
```
`isActive` is used in https://drafts.csswg.org/resize-observer-1/#gather-active-observations-at-depth:
> If *observation*.[`isActive()`](https://drafts.csswg.org/resize-observer-1/#dom-resizeobservation-isactive) is true
where `observation` is a `ResizeObservation`.
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7614 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 17 August 2022 20:30:19 UTC