mirror of
https://github.com/servo/servo.git
synced 2025-10-16 16:29:18 +01:00
Remove all traces of WindowProxy. Implement basic browser context concept and outerizing of inner windows.
This commit is contained in:
parent
c760577aee
commit
94dffca1e1
24 changed files with 354 additions and 155 deletions
|
@ -10,8 +10,8 @@
|
|||
[NamedPropertiesObject]
|
||||
/*sealed*/ interface Window : EventTarget {
|
||||
// the current browsing context
|
||||
/*[Unforgeable] readonly attribute WindowProxy window;
|
||||
[Replaceable] readonly attribute WindowProxy self;*/
|
||||
[Unforgeable] readonly attribute Window window;
|
||||
[Replaceable] readonly attribute Window self;
|
||||
[Unforgeable] readonly attribute Document document;
|
||||
attribute DOMString name;
|
||||
/* [PutForwards=href, Unforgeable] */ readonly attribute Location location;
|
||||
|
@ -30,14 +30,14 @@
|
|||
void blur();
|
||||
|
||||
// other browsing contexts
|
||||
/*[Replaceable] readonly attribute WindowProxy frames;
|
||||
/*[Replaceable] readonly attribute Window frames;
|
||||
[Replaceable] readonly attribute unsigned long length;
|
||||
[Unforgeable] readonly attribute WindowProxy top;
|
||||
attribute WindowProxy? opener;
|
||||
readonly attribute WindowProxy parent;*/
|
||||
[Unforgeable] readonly attribute Window top;
|
||||
attribute Window? opener;
|
||||
readonly attribute Window parent;*/
|
||||
readonly attribute Element? frameElement;
|
||||
/*WindowProxy open(optional DOMString url = "about:blank", optional DOMString target = "_blank", optional DOMString features = "", optional boolean replace = false);
|
||||
getter WindowProxy (unsigned long index);*/
|
||||
/*Window open(optional DOMString url = "about:blank", optional DOMString target = "_blank", optional DOMString features = "", optional boolean replace = false);
|
||||
getter Window (unsigned long index);*/
|
||||
//getter object (DOMString name);
|
||||
|
||||
// the user agent
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue