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 : let xhr = new XMLHttpRequest(); 7 : 1 : 8 : 1 : xhr.open('POST', `${activeURL}/header-user-agent.py`, false); 9 : 1 : 10 : 1 : xhr.setRequestHeader('x-test', 'foobar'); 11 : 1 : 12 : 1 : xhr.send(); 13 : 1 : 14 : 1 : assert.strictEqual(xhr.responseText, 'PASS'); 15 : 1 : } 16 : 2 : 17 : 2 : /* 18 : 2 : * header-user-agent-sync.htm 19 : 2 : * 20 : 2 : 21 : 2 : <!DOCTYPE html> 22 : 2 : <html> 23 : 2 : <head> 24 : 2 : <title>Test that sync requests (both OPTIONS preflight and regular) are sent with the User-Agent header</title> 25 : 2 : <script src="/resources/testharness.js"></script> 26 : 2 : <script src="/resources/testharnessreport.js"></script> 27 : 2 : <script src="/common/get-host-info.sub.js"></script> 28 : 2 : </head> 29 : 2 : <body> 30 : 2 : <script type="text/javascript"> 31 : 2 : test(function() { 32 : 2 : let xhr = new XMLHttpRequest; 33 : 2 : xhr.open("post", get_host_info().HTTP_REMOTE_ORIGIN + "/xhr/resources/header-user-agent.py", false); 34 : 2 : xhr.setRequestHeader("x-test", "foobar"); 35 : 2 : xhr.send(); 36 : 2 : assert_equals(xhr.responseText, "PASS"); 37 : 2 : }, "Sync request has User-Agent header"); 38 : 2 : </script> 39 : 2 : </body> 40 : 2 : </html> 41 : 2 : 42 : 2 : * 43 : 2 : * header-user-agent-sync.htm 44 : 2 : */