Sign in
webkit
/
WebKit
/
3f78a298b8cb2d7ccc1b4dafb89a4d60eb2fbe8f
/
.
/
LayoutTests
/
imported
/
w3c
/
web-platform-tests
/
common
/
window-name-setter.html
blob: c0603aa300838bad111899b1efaf058943f88e11 [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<meta
charset
=
"utf-8"
>
<title>
A page that sets window.name
</title>
<script>
"use strict"
;
window
.
onload
=
()
=>
{
window
.
name
=
location
.
hash
.
slice
(
1
);
// Drop the first '#' character.
window
.
name
=
"spices"
;
};
</script>