summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/historical.html
blob: 4af3da9f54ce50752568bb0fb340961b771ce1f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!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>