historical.html (473B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>Historical features</title> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <div id="log"></div> 7 <script> 8 ["moz-blob", "moz-chunked-text", "moz-chunked-arraybuffer"].forEach(function(rt) { 9 test(function() { 10 var xhr = new XMLHttpRequest(); 11 xhr.responseType = rt; 12 assert_equals(xhr.responseType, ""); 13 }, "Support for responseType = " + rt); 14 }); 15 </script>