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
Since Firefox version 62, window.getComputedStyle() returns a CSSStyleDeclaration object with length 0 (instead of null) inside an iframe with display: none.
See this comment: https://bugzilla.mozilla.org/show_bug.cgi?id=548397#c53.
CSSStyleDeclaration object with length 0 is not a falsy value, so the previous fix does not work and vendorPrefix gets an empty string value.
The text was updated successfully, but these errors were encountered:
Related pull request: #106
Since Firefox version 62, window.getComputedStyle() returns a CSSStyleDeclaration object with length 0 (instead of null) inside an iframe with display: none.
See this comment: https://bugzilla.mozilla.org/show_bug.cgi?id=548397#c53.
CSSStyleDeclaration object with length 0 is not a falsy value, so the previous fix does not work and vendorPrefix gets an empty string value.
The text was updated successfully, but these errors were encountered: