summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/browsing-the-web/history-traversal/browsing_context_name.html
blob: 60a8acb09833e1eaf14b374062cf9f466ebeadfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!doctype html>
<title>Retaining window.name on 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(() => {
  win = window.open("browsing_context_name-0.html");
  t.add_cleanup(() => win.close());
});
</script>