About two months ago, we started using Rollbar to notify us of various bugs in our web application. Since then we get a random error:
ResizeObserver loop limit exceeded
What confuses me is that we are not using ResizeObserver , and I investigated the only plugin that I thought might be the culprit, namely:
Aurelia resize
But it does not seem to use ResizeObserver .
What is also confusing is that these error messages have been occurring since January, but support for ResizeObserver only recently been added to Chrome 65.
The browser versions that gave us this error:
- Chrome: 63.0.3239 (ResizeObserver loop limit exceeded)
- Chrome: 64.0.3282 (ResizeObserver loop limit exceeded)
- Edge: 14.14393 (SecurityError)
- Edge: 15.15063 (SecurityError)
So I was wondering if this could be a browser bug? Or perhaps a bug that is not really related to ResizeObserver ?
source share