ladybird/Tests/LibWeb/Text/input/URL/opaque_paths_roundtrip.html
2025-03-20 11:50:49 +01:00

15 lines
465 B
HTML

<!DOCTYPE html>
<script src="../include.js"></script>
<script>
test(() => {
let url = new URL("scheme:foobar ?well=hello");
println(`pathname => '${url.pathname}'`);
url.search = "";
println(`pathname => '${url.pathname}'`);
url = new URL("scheme:baz #friends");
println(`pathname => '${url.pathname}'`);
url.hash = "";
println(`pathname => '${url.pathname}'`);
});
</script>