summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/browsing-the-web/history-traversal/browsing_context_name_cross_origin.html
blob: caa0bce3eb9a9bc265c9c13f045c978f11be0eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!doctype html>
<title>Restoring window.name on cross-origin history traversal</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<pre id="step_log"></pre>

<script>
var t = async_test();
t.step(() => {
  var win = window.open("browsing_context_name_cross_origin-0.html");
  t.add_cleanup(() => win.close());
});
</script>