diff options
Diffstat (limited to 'node_modules/stream-http/test/browser/binary-streaming.js')
-rw-r--r-- | node_modules/stream-http/test/browser/binary-streaming.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/stream-http/test/browser/binary-streaming.js b/node_modules/stream-http/test/browser/binary-streaming.js index 4d2d63e00..d1221dfe2 100644 --- a/node_modules/stream-http/test/browser/binary-streaming.js +++ b/node_modules/stream-http/test/browser/binary-streaming.js @@ -8,8 +8,8 @@ var http = require('../..') var browser = (new UAParser()).setUA(navigator.userAgent).getBrowser() var browserName = browser.name var browserVersion = browser.major -// Binary streaming doesn't work in IE10 or below or in Opera -var skipStreamingCheck = (browserName === 'Opera' || (browserName === 'IE' && browserVersion <= 10)) +// Binary streaming doesn't work in IE10 or below +var skipStreamingCheck = (browserName === 'IE' && browserVersion <= 10) // Binary data gets corrupted in IE8 or below var skipVerification = (browserName === 'IE' && browserVersion <= 8) |