You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Some errors don't give an error object, like "ResizeObserver loop limit exceeded"
23
+
// in which case the message should be used.
24
+
// The source/lineno/colno arguments are not helpful in this case.
25
+
// To test this: copy code (excluding onerror handler) from this nice repo: https://github.com/OliverJAsh/resize-observer-loop-tests/blob/6a9a5bd8e443c38d3df63833fc7e04abfc6fec32/simple.html#L8-L25
26
+
// (BTW: I could specifically check that `source === location.href` to ignore the source/lineno/colno arguments, and otherwise show them...)
27
+
error_details=/** @type {string} */(message);// This is a string, never an Event. Event is for onerror of images etc.
0 commit comments