summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/browser/399606-window.location.href.html
blob: 490b08e40c657228d6d7123e0391cf486399eb85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<head>
<title>window.location.href</title>
<script>
setTimeout(function() {
  // eslint-disable-next-line no-self-assign
  window.location.href = window.location.href;
}, 1000);
</script>
</head>
<body>
Testing window.location.href
</body>
</html>