Export DOMException for `instanceof` checks

This commit is contained in:
Mislav Marohnić 2018-05-23 16:00:34 +02:00
Родитель f03586047c
Коммит 2bd7f22032
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -424,7 +424,7 @@ Response.redirect = function(url, status) {
return new Response(null, {status: status, headers: {location: url}})
}
var DOMException = self.DOMException
export var DOMException = self.DOMException
try {
new DOMException()
} catch (err) {

Просмотреть файл

@ -1060,6 +1060,7 @@ exercise.forEach(function(exerciseMode) {
assert.ok(false)
},
function(error) {
assert.instanceOf(error, WHATWGFetch.DOMException)
assert.equal(error.name, 'AbortError')
}
)