mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 18:02:20 +00:00
15 lines
465 B
HTML
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>
|