Re: [csswg-drafts] [resize-observer] Which box information should we pass to the callback (#3329)

So now we would have something like this?

```js
const ro = new ResizeObserver(entries => {
  entries.forEach(entry => {
    console.log(entry);
    // { target: Element, size: ResizeObserverSize }
  })
})
```

-- 
GitHub Notification of comment by TremayneChrist
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3329#issuecomment-457098488 using your GitHub account

Received on Thursday, 24 January 2019 07:43:51 UTC