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 : request('TEST', 'text/plain;charset=UTF-8'); 7 : 1 : 8 [ + ]: 1 : function request(data, expected_type) { 9 : 1 : 10 : 1 : let xhr = new XMLHttpRequest(); 11 : 1 : 12 : 1 : xhr.open('POST', `${activeURL}/content.py`, false); 13 : 1 : xhr.send(data); 14 : 1 : 15 : 1 : assert.strictEqual(xhr.getResponseHeader('x-request-content-type'), expected_type); 16 : 1 : } 17 : 1 : } 18 : 2 : 19 : 2 : /* 20 : 2 : * send-content-type-string.htm 21 : 2 : * 22 : 2 : 23 : 2 : <!doctype html> 24 : 2 : <html> 25 : 2 : <head> 26 : 2 : <title>XMLHttpRequest: send() - Content-Type</title> 27 : 2 : <script src="/resources/testharness.js"></script> 28 : 2 : <script src="/resources/testharnessreport.js"></script> 29 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#dom-XMLHttpRequest-send-document" data-tested-assertations="following::p[1] following::p[2] following::p[3]" /> 30 : 2 : </head> 31 : 2 : <body> 32 : 2 : <div id="log"></div> 33 : 2 : <script> 34 : 2 : function request(data, expected_type) { 35 : 2 : test(function() { 36 : 2 : var client = new XMLHttpRequest() 37 : 2 : client.open("POST", "resources/content.py", false) 38 : 2 : client.send(data) 39 : 2 : assert_equals(client.getResponseHeader("x-request-content-type"), expected_type) 40 : 2 : }) 41 : 2 : } 42 : 2 : request("TEST", "text/plain;charset=UTF-8") 43 : 2 : function init(fr) { request(fr.contentDocument, fr.getAttribute("data-t")) } 44 : 2 : </script> 45 : 2 : <iframe src="resources/win-1252-xml.py" onload="init(this)" data-t="application/xml;charset=UTF-8"></iframe> 46 : 2 : <iframe src="resources/win-1252-html.py" onload="init(this)" data-t="text/html;charset=UTF-8"></iframe> 47 : 2 : </body> 48 : 2 : </html> 49 : 2 : 50 : 2 : * 51 : 2 : * send-content-type-string.htm 52 : 2 : */