Tremayne Christ

Results 18 issues of 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...

enhancement
Next
v4

Improve the comments in the code to allow for useful code hints in editors.

enhancement
help wanted
documentation
v4

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....

enhancement

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:...

enhancement
v4

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...

v4

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...

enhancement
spec
v4

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/toStringTag

enhancement
spec

Currently failing web platform test: https://github.com/web-platform-tests/wpt/blob/master/resize-observer/observe.html#L568

bug
help wanted
spec
v4

Add support for object properties.. ``` var obj = { name: 'Test Object', deep: { name: 'Another object' } } ``` Support depth option #7

enhancement
good first issue