Sign in
chromium
/
external
/
github.com
/
web-platform-tests
/
wpt
/
refs/heads/DOMParser-interface
/
.
/
cookies
/
resources
/
navigate.html
blob: 077efba5699315040461a3b41cb86d64d539551a [
file
] [
log
] [
blame
] [
edit
]
<!DOCTYPE html>
<meta
charset
=
"utf-8"
>
<script>
// Navigates the window to a location specified via URL query param.
const
params
=
new
URLSearchParams
(
window
.
location
.
search
);
const
loc
=
params
.
get
(
'location'
);
window
.
location
=
loc
;
</script>