Closed stephenegriffin closed 5 years ago
getComputedStyle can return null on firefox < v62: https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle
This breaks fabric: https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.5.0/js/fabric.js Spinner.prototype._getOpacity = function (element) { return parseFloat(window.getComputedStyle(element).getPropertyValue("opacity")); };
I've tried firefox v60 and 56 but cannot repro. If anyone has repro details, lemme know
https://bugzilla.mozilla.org/show_bug.cgi?id=548397
still getting reports at Firefox 52.0
May have fixed this with 91ab85e
getComputedStyle can return null on firefox < v62: https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle
This breaks fabric: https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.5.0/js/fabric.js Spinner.prototype._getOpacity = function (element) { return parseFloat(window.getComputedStyle(element).getPropertyValue("opacity")); };