Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding the Window Proxy page #4630

Merged
merged 4 commits into from
May 5, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions files/en-us/glossary/windowproxy/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: WindowProxy
slug: Glossary/WindowProxy
tags:
- Glossary
- Window
- WindowProxy
---
<p>A <em><code>WindowProxy</code></em> object is a wrapper for a <code><a href="/en-US/docs/Web/API/Window">Window</a></code> object. A <code>WindowProxy</code> object exists in every <a href="/en-US/docs/Glossary/Browsing_context">browsing context</a>. All operations performed on a <code>WindowProxy</code> object will also be applied to the underlying <code>Window</code> object it currently wraps. Therefore, interacting with a <code>WindowProxy</code> object is almost identical to directly interacting with a <code>Window</code> object. When a browsing context is navigated, the <code>Window</code> object its <code>WindowProxy</code> wraps is changed.</p>

<h2 id="see_also">See also</h2>

<ul>
<li><a href="https://html.spec.whatwg.org/multipage/window-object.html#the-windowproxy-exotic-object">the WindowProxy section of the HTML specification</a></li>
</ul>