1
0
Fork 0
firefox/netwerk/test/unit/test_bug261425.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

29 lines
680 B
JavaScript

"use strict";
function run_test() {
var newURI = Services.io.newURI("http://foo.com");
var success = false;
try {
newURI = newURI.mutate().setSpec("http: //foo.com").finalize();
} catch (e) {
success = e.result == Cr.NS_ERROR_MALFORMED_URI;
}
if (!success) {
do_throw(
"We didn't throw NS_ERROR_MALFORMED_URI when a space was passed in the hostname!"
);
}
success = false;
try {
newURI.mutate().setHost(" foo.com").finalize();
} catch (e) {
success = e.result == Cr.NS_ERROR_MALFORMED_URI;
}
if (!success) {
do_throw(
"We didn't throw NS_ERROR_MALFORMED_URI when a space was passed in the hostname!"
);
}
}