diff options
author | Josh Matthews <josh@joshmatthews.net> | 2013-10-21 08:11:18 +0100 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2014-04-22 10:57:25 -0400 |
commit | 94dffca1e165eb5504feda42e89015648b484b78 (patch) | |
tree | 333bc6894ead07d5b7d6c222ae4d050e174f4c7a /src/components/script/dom/webidls/HTMLIFrameElement.webidl | |
parent | c760577aee3ca31e58b4dd2b7f919d14fcaa2d2f (diff) | |
download | servo-94dffca1e165eb5504feda42e89015648b484b78.tar.gz servo-94dffca1e165eb5504feda42e89015648b484b78.zip |
Remove all traces of WindowProxy. Implement basic browser context concept and outerizing of inner windows.
Diffstat (limited to 'src/components/script/dom/webidls/HTMLIFrameElement.webidl')
-rw-r--r-- | src/components/script/dom/webidls/HTMLIFrameElement.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/webidls/HTMLIFrameElement.webidl b/src/components/script/dom/webidls/HTMLIFrameElement.webidl index 873563e139a..09d81a27102 100644 --- a/src/components/script/dom/webidls/HTMLIFrameElement.webidl +++ b/src/components/script/dom/webidls/HTMLIFrameElement.webidl @@ -27,7 +27,7 @@ interface HTMLIFrameElement : HTMLElement { [SetterThrows, Pure] attribute DOMString height; readonly attribute Document? contentDocument; - readonly attribute WindowProxy? contentWindow; + readonly attribute Window? contentWindow; }; // http://www.whatwg.org/specs/web-apps/current-work/#other-elements,-attributes-and-apis |