summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/windows/browsing-context-names/resources/choose-_parent-004-iframe-1.html
blob: 7a8cbecb277a8420733f3c1be35a617127e8dc0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<meta charset="utf-8">
<title>HTML Test: browsing context name - parent</title>
<script src="/common/PrefixedLocalStorage.js"></script>
<body>
<script>
var prefixedStorage = new PrefixedLocalStorageResource({
  close_on_cleanup: true
});
var iframe = document.createElement('iframe');
iframe.src = prefixedStorage.url('choose-_parent-004-iframe-2.html');
document.body.appendChild(iframe);
</script>
</body>