flaretailjs / flaretail.js

A JavaScript library for Firefox application development, consisting of WAI-ARIA-driven accessible widgets, a lightweight app framework, and convenient utility functions.
Other
1 stars 2 forks source link

Use Resize Observer API for ScrollBar #44

Open kyoshino opened 8 years ago

kyoshino commented 8 years ago

We have removed the non-standard MozScrolledAreaChanged event in #39 to make the ScrollBar widget e10s-friendly. The current implementation using requestAnimationFrame is much better, but it eats memory. The Resize Observer API, that will be implemented in Firefox soon, is the final answer for this.

kyoshino commented 7 years ago

We perhaps don't need the new API. See CSS deep-dive: matrix3d() for a frame-perfect custom scrollbar for an interesting approach.