mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50: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
|
@ -13,12 +13,12 @@
|
|||
[Constructor(DOMString type, optional UIEventInit eventInitDict)]
|
||||
interface UIEvent : Event
|
||||
{
|
||||
readonly attribute WindowProxy? view;
|
||||
readonly attribute long detail;
|
||||
readonly attribute Window? view;
|
||||
readonly attribute long detail;
|
||||
void initUIEvent(DOMString aType,
|
||||
boolean aCanBubble,
|
||||
boolean aCancelable,
|
||||
WindowProxy? aView,
|
||||
Window? aView,
|
||||
long aDetail);
|
||||
};
|
||||
|
||||
|
@ -40,6 +40,6 @@ partial interface UIEvent {
|
|||
|
||||
dictionary UIEventInit : EventInit
|
||||
{
|
||||
WindowProxy? view = null;
|
||||
long detail = 0;
|
||||
Window? view = null;
|
||||
long detail = 0;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue