Tremayne Christ
Tremayne Christ
Currently the library only listens to mutations on the main document level. This means that any **non-user actioned** DOM changes inside a shadow root will not be noticed. Most of...
Improve the comments in the code to allow for useful code hints in editors.
When observing `device-pixel-content-box` incorrect values could be reported. This is due to pixel pixel rounding/snapping when `devicePixelRatio` is greater than 1. This issue is exaggerated when dragging elements across pixels....
When a window is dragged across screens with different resolutions, no notification is fired when observing `device-pixel-content-box`. To improve this, use `matchMedia` API to watch for resolution changes. ```js matchMedia(`(resolution:...
Supporting added ResizeObserver features and improving the library, has increased the bundle size. As the specification is now at a stable state, it could be a good time to refactor...
Currently the methods on the object are not set to be enumerable and the following code will print nothing. ```js const ro = new ResizeObserver(() => {}); for (let key...
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/toStringTag
Currently failing web platform test: https://github.com/web-platform-tests/wpt/blob/master/resize-observer/observe.html#L568
Add support for object properties.. ``` var obj = { name: 'Test Object', deep: { name: 'Another object' } } ``` Support depth option #7