summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/history/the-location-interface/scripted_click_assign_during_load-2.html
blob: 1bf7f41e00f4bec946525640054e2904d6d0157e (plain)
1
2
3
4
5
6
7
<!doctype html>
<p>This window should close itself and the test result appear in the original window
<script>
onload = function() {
  setTimeout(function() {opener.do_test(history.length); window.close();}, 100);
}
</script>