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 17 matching lines...) Expand all Loading... |
28 CheckSecurity, | 28 CheckSecurity, |
29 CustomGetOwnPropertySlot, | 29 CustomGetOwnPropertySlot, |
30 EventTarget, | 30 EventTarget, |
31 CustomToJSObject, | 31 CustomToJSObject, |
32 NoWrapperCache, | 32 NoWrapperCache, |
33 CustomIndexedGetter, | 33 CustomIndexedGetter, |
34 InterfaceName=Window | 34 InterfaceName=Window |
35 ] interface DOMWindow { | 35 ] interface DOMWindow { |
36 // DOM Level 0 | 36 // DOM Level 0 |
37 [Replaceable] readonly attribute Screen screen; | 37 [Replaceable] readonly attribute Screen screen; |
38 [Replaceable, DoNotCheckSecurityOnGetter] readonly attribute History history
; | 38 [Replaceable] readonly attribute History history; |
39 [Replaceable] readonly attribute BarInfo locationbar; | 39 [Replaceable] readonly attribute BarInfo locationbar; |
40 [Replaceable] readonly attribute BarInfo menubar; | 40 [Replaceable] readonly attribute BarInfo menubar; |
41 [Replaceable] readonly attribute BarInfo personalbar; | 41 [Replaceable] readonly attribute BarInfo personalbar; |
42 [Replaceable] readonly attribute BarInfo scrollbars; | 42 [Replaceable] readonly attribute BarInfo scrollbars; |
43 [Replaceable] readonly attribute BarInfo statusbar; | 43 [Replaceable] readonly attribute BarInfo statusbar; |
44 [Replaceable] readonly attribute BarInfo toolbar; | 44 [Replaceable] readonly attribute BarInfo toolbar; |
45 [Replaceable, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] readonl
y attribute Navigator navigator; | 45 [Replaceable, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] readonl
y attribute Navigator navigator; |
46 [Replaceable] readonly attribute Navigator clientInformation; | 46 [Replaceable] readonly attribute Navigator clientInformation; |
47 readonly attribute Crypto crypto; | 47 readonly attribute Crypto crypto; |
48 [DoNotCheckSecurity, CustomSetter, Unforgeable] attribute Location location; | 48 [DoNotCheckSecurity, CustomSetter, Unforgeable] attribute Location location; |
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 attribute MutationRecordConstructor MutationRecord; | 748 attribute MutationRecordConstructor MutationRecord; |
749 | 749 |
750 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; | 750 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; |
751 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; | 751 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; |
752 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; | 752 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; |
753 | 753 |
754 // window.toString() requires special handling in V8 | 754 // window.toString() requires special handling in V8 |
755 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 755 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
756 }; | 756 }; |
757 | 757 |
OLD | NEW |