LibWeb/Tests: Also verify URL search params in constructor tests

This commit is contained in:
Shannon Booth
2024-08-07 03:23:58 +12:00
committed by Tim Ledbetter
parent 1dc4959e91
commit d7b19b3278
Notes: github-actions[bot] 2024-08-06 22:09:18 +00:00
2 changed files with 29 additions and 0 deletions

View File

@@ -17,6 +17,7 @@
println(`port => '${url.port}'`);
println(`pathname => '${url.pathname}'`);
println(`search => '${url.search}'`);
println(`searchParams => '${url.searchParams}'`);
println(`hash => '${url.hash}'`);
}