blob: b84366cf8d81dac2bd4eaef174ac2fb9c1b99f43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<head>
<title>window.location</title>
<script>
setTimeout(function() {
// eslint-disable-next-line no-self-assign
window.location = window.location;
}, 1000);
</script>
</head>
<body>
Testing window.location
</body>
</html>
|