summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/history/the-location-interface/assign_after_load-1.html
blob: 3d2b897221a726c33804ef9b78197db3ce4413e0 (plain)
1
2
3
4
5
6
7
8
9
<!doctype html>
1
<script>
onload = parent.t.step_func(function() {
  setTimeout(function() {
    location = location.toString().replace("assign_after_load-1.html", "assign_after_load-2.html");
  }, 100);
});
</script>