Removed integrity check and test for no-cors requests

Also updated request-headers.html manifest hash
This commit is contained in:
Daniel Kolsoi 2017-09-25 19:11:30 -04:00
parent 216f64e4e1
commit 96f9cc77e6
3 changed files with 1 additions and 11 deletions

View file

@ -51,12 +51,6 @@
"Expect TypeError exception");
},"RequestInit's mode is no-cors and method is not simple");
test(function() {
assert_throws(new TypeError() ,
function() { new Request("", {"mode" : "no-cors", "integrity" : "not an empty string"}); },
"Expect TypeError exception");
},"RequestInit's mode is no-cors and integrity is not empty");
test(function() {
assert_throws(new TypeError() ,
function() { new Request("", {"mode" : "cors", "cache" : "only-if-cached"}); },