mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 18:02:20 +00:00
10 lines
248 B
HTML
10 lines
248 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
let url = new URL("https://www.birdoftheyear.org.nz/?")
|
|
println(url.href);
|
|
url.searchParams.sort()
|
|
println(url.href);
|
|
});
|
|
</script>
|