mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
6 lines
241 B
JavaScript
6 lines
241 B
JavaScript
// META: global=window,worker
|
|
|
|
promise_test(t => {
|
|
return promise_rejects_js(t, TypeError, fetch("../../../xhr/resources/parse-headers.py?my-custom-header="+encodeURIComponent("x\0x")));
|
|
}, "Ensure fetch() rejects null bytes in headers");
|