blob: 4af3da9f54ce50752568bb0fb340961b771ce1f8 [file] [log] [blame]
<!doctype html>
<meta charset="utf-8">
<title>Historical features</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
["moz-blob", "moz-chunked-text", "moz-chunked-arraybuffer"].forEach(function(rt) {
test(function() {
var xhr = new XMLHttpRequest();
xhr.responseType = rt;
assert_equals(xhr.responseType, "");
}, "Support for responseType = " + rt);
});
</script>