Branch data Line data Source code
1 [ + ]: 2 : import assert from 'node:assert/strict'; 2 : 2 : import { XMLHttpRequest } from '../../../lib/whatwg-xhr.js'; 3 : 2 : 4 [ + ]: 2 : export default (activeURL) => { 5 : 1 : 6 : 1 : [ 7 : 1 : 'moz-blob', 8 : 1 : 'moz-chunked-text', 9 : 1 : 'moz-chunked-arraybuffer' 10 [ + ]: 1 : ].forEach((rt) => { 11 : 3 : 12 : 3 : let xhr = new XMLHttpRequest(); 13 : 3 : xhr.responseType = rt; 14 : 3 : 15 : 3 : assert.strictEqual(xhr.responseType, ''); 16 : 1 : }); 17 : 1 : } 18 : 2 : 19 : 2 : /* 20 : 2 : * historical.html 21 : 2 : * 22 : 2 : 23 : 2 : <!doctype html> 24 : 2 : <meta charset="utf-8"> 25 : 2 : <title>Historical features</title> 26 : 2 : <script src="/resources/testharness.js"></script> 27 : 2 : <script src="/resources/testharnessreport.js"></script> 28 : 2 : <div id="log"></div> 29 : 2 : <script> 30 : 2 : ["moz-blob", "moz-chunked-text", "moz-chunked-arraybuffer"].forEach(function(rt) { 31 : 2 : test(function() { 32 : 2 : var xhr = new XMLHttpRequest(); 33 : 2 : xhr.responseType = rt; 34 : 2 : assert_equals(xhr.responseType, ""); 35 : 2 : }, "Support for responseType = " + rt); 36 : 2 : }); 37 : 2 : </script> 38 : 2 : 39 : 2 : * 40 : 2 : * historical.html 41 : 2 : */