We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18b5097 commit 5840137Copy full SHA for 5840137
src/lib/supports_pixelated_image.js
@@ -15,7 +15,8 @@ function supportsPixelatedImage() {
15
if(_supportsPixelated !== null) { // only run the feature detection once
16
return _supportsPixelated;
17
}
18
- if(Lib.isIE()) {
+ if(Lib.isIE() || Lib.isSafari()) {
19
+ // NB. Safari passes the test below but the final rendering is not pixelated
20
_supportsPixelated = false;
21
} else {
22
var declarations = Array.from(constants.CSS_DECLARATIONS).reverse();
0 commit comments