Skip to content

Commit

Permalink
IE9/10/11 don't support 308
Browse files Browse the repository at this point in the history
  • Loading branch information
josh committed Jan 12, 2015
1 parent 4e299c1 commit 5c3efc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ suite('Atomic HTTP redirect handling', function() {
})
})

var permanentRedirectSupported = !/PhantomJS/.test(navigator.userAgent)
var permanentRedirectSupported = !/PhantomJS|Trident/.test(navigator.userAgent)

;(permanentRedirectSupported ? test : test.skip)('handles 308 redirect response', function() {
return fetch('/redirect/308').then(function(response) {
Expand Down

0 comments on commit 5c3efc9

Please sign in to comment.