Sign in
webkit
/
WebKit
/
fbd7aecd32a54cc89151940f9061a558c9e21c21
/
.
/
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>