summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/resources/navigate-nested-config.html
blob: 85c5194c6c7746aedc9d78db8e1a222aa59e37ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="utils.js"></script>
<title>Navigate a fenced frame to a nested config</title>
<body>
<script>
  const [key] = parseKeylist();
  const configs = window.fence.getNestedConfigs();
  const ff = document.createElement("fencedframe");
  ff.config = configs[0]
  document.body.appendChild(ff);
</script>
</body>
</html>