Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/browsers/the-window-object/named-access-on-the-window-object/nested-context.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Named access on the window object - Nested browsing context</title>
<link rel="author" title="Matthew Phillips" href="mailto:matthew@matthewphillips.info">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
"use strict";
test(() => {
const iframe = document.createElement("iframe");
iframe.setAttribute("name", "foo");
document.body.appendChild(iframe);
assert_equals(window.foo, iframe.contentWindow);
}, "A named property that matches any element that contains a nested " +
"browsing context, must return the WindowProxy of that context");
test(() => {
const iframe = document.createElement("iframe");
iframe.setAttribute("id", "bar");
document.body.appendChild(iframe);
assert_equals(window.bar, iframe);
}, "A named property that matches an element that contains a nested " +
"browsing context must return the element if using id");
</script>