Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/node-ci-2022-11-16
/
.
/
test
/
parallel
/
test-url-null-char.js
blob: 468080844d534bb06efde74b5fc7ced280b0b93f [
file
] [
edit
]
'use strict'
;
require
(
'../common'
);
const
assert
=
require
(
'assert'
);
assert
.
throws
(
()
=>
{
new
URL
(
'a\0b'
);
},
{
input
:
'a\0b'
}
);