| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 [Replaceable] readonly attribute Screen screen; | 35 [Replaceable] readonly attribute Screen screen; |
| 36 [Replaceable] readonly attribute History history; | 36 [Replaceable] readonly attribute History history; |
| 37 [Replaceable] readonly attribute BarProp locationbar; | 37 [Replaceable] readonly attribute BarProp locationbar; |
| 38 [Replaceable] readonly attribute BarProp menubar; | 38 [Replaceable] readonly attribute BarProp menubar; |
| 39 [Replaceable] readonly attribute BarProp personalbar; | 39 [Replaceable] readonly attribute BarProp personalbar; |
| 40 [Replaceable] readonly attribute BarProp scrollbars; | 40 [Replaceable] readonly attribute BarProp scrollbars; |
| 41 [Replaceable] readonly attribute BarProp statusbar; | 41 [Replaceable] readonly attribute BarProp statusbar; |
| 42 [Replaceable] readonly attribute BarProp toolbar; | 42 [Replaceable] readonly attribute BarProp toolbar; |
| 43 [Replaceable, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] readonl
y attribute Navigator navigator; | 43 [Replaceable, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] readonl
y attribute Navigator navigator; |
| 44 [Replaceable] readonly attribute Navigator clientInformation; | 44 [Replaceable] readonly attribute Navigator clientInformation; |
| 45 readonly attribute Crypto crypto; | |
| 46 [DoNotCheckSecurity, CustomSetter, Unforgeable, Replaceable, PerWorldBinding
s, ActivityLog=AccessForIsolatedWorlds] readonly attribute Location location; | 45 [DoNotCheckSecurity, CustomSetter, Unforgeable, Replaceable, PerWorldBinding
s, ActivityLog=AccessForIsolatedWorlds] readonly attribute Location location; |
| 47 [MeasureAs=WindowEvent, NotEnumerable, Replaceable, CustomGetter, CustomSett
er] readonly attribute Event event; | 46 [MeasureAs=WindowEvent, NotEnumerable, Replaceable, CustomGetter, CustomSett
er] readonly attribute Event event; |
| 48 | 47 |
| 49 Selection getSelection(); | 48 Selection getSelection(); |
| 50 | 49 |
| 51 [CheckSecurityForNode] readonly attribute Element frameElement; | 50 [CheckSecurityForNode] readonly attribute Element frameElement; |
| 52 | 51 |
| 53 [DoNotCheckSecurity, CallWith=ScriptExecutionContext] void focus(); | 52 [DoNotCheckSecurity, CallWith=ScriptExecutionContext] void focus(); |
| 54 [DoNotCheckSecurity] void blur(); | 53 [DoNotCheckSecurity] void blur(); |
| 55 [DoNotCheckSecurity, CallWith=ScriptExecutionContext] void close(); | 54 [DoNotCheckSecurity, CallWith=ScriptExecutionContext] void close(); |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 attribute ShadowRootConstructor WebKitShadowRoot; | 311 attribute ShadowRootConstructor WebKitShadowRoot; |
| 313 [Conditional=WEB_AUDIO] attribute PannerNodeConstructor webkitAudioPannerNod
e; | 312 [Conditional=WEB_AUDIO] attribute PannerNodeConstructor webkitAudioPannerNod
e; |
| 314 | 313 |
| 315 // window.toString() requires special handling in V8 | 314 // window.toString() requires special handling in V8 |
| 316 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 315 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
| 317 | 316 |
| 318 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter DOMWindow(unsig
ned long index); | 317 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter DOMWindow(unsig
ned long index); |
| 319 [Custom, NotEnumerable] getter DOMWindow (DOMString name); | 318 [Custom, NotEnumerable] getter DOMWindow (DOMString name); |
| 320 }; | 319 }; |
| 321 | 320 |
| OLD | NEW |