| Index: third_party/WebKit/Source/core/frame/Window.idl
|
| diff --git a/third_party/WebKit/Source/core/frame/Window.idl b/third_party/WebKit/Source/core/frame/Window.idl
|
| index bb18c335e36dd38b5cf5f358e996fcb25fc77832..265cc88a4da44333415a9417802ec6cc61b6fe94 100644
|
| --- a/third_party/WebKit/Source/core/frame/Window.idl
|
| +++ b/third_party/WebKit/Source/core/frame/Window.idl
|
| @@ -56,10 +56,10 @@
|
| // other browsing contexts
|
| [Replaceable, CallWith=ScriptState, CrossOrigin] readonly attribute Window frames;
|
| [Replaceable, CrossOrigin] readonly attribute unsigned long length;
|
| - [Unforgeable, CrossOrigin] readonly attribute Window top;
|
| + [Unforgeable, CrossOrigin] readonly attribute Window? top;
|
| // FIXME: opener should be of type any.
|
| [CrossOrigin, Custom=Setter] attribute Window opener;
|
| - [Replaceable, CrossOrigin] readonly attribute Window parent;
|
| + [Replaceable, CrossOrigin] readonly attribute Window? parent;
|
| [CheckSecurity=ReturnValue, Custom=Getter] readonly attribute Element? frameElement;
|
| // FIXME: open() should have 4 optional arguments with defaults.
|
| [Custom] Window? open(DOMString url, DOMString target, optional DOMString features);
|
|
|