| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 CSSRuleList getMatchedCSSRules([Default=Undefined] optional Element element, | 136 CSSRuleList getMatchedCSSRules([Default=Undefined] optional Element element, |
| 137 [TreatNullAs=NullString, TreatUndefinedAs=Nul
lString,Default=Undefined] optional DOMString pseudoElement); | 137 [TreatNullAs=NullString, TreatUndefinedAs=Nul
lString,Default=Undefined] optional DOMString pseudoElement); |
| 138 | 138 |
| 139 [Replaceable] readonly attribute double devicePixelRatio; | 139 [Replaceable] readonly attribute double devicePixelRatio; |
| 140 | 140 |
| 141 WebKitPoint webkitConvertPointFromPageToNode([Default=Undefined] optional No
de node, | 141 WebKitPoint webkitConvertPointFromPageToNode([Default=Undefined] optional No
de node, |
| 142 [Default=Undefined] optional We
bKitPoint p); | 142 [Default=Undefined] optional We
bKitPoint p); |
| 143 WebKitPoint webkitConvertPointFromNodeToPage([Default=Undefined] optional No
de node, | 143 WebKitPoint webkitConvertPointFromNodeToPage([Default=Undefined] optional No
de node, |
| 144 [Default=Undefined] optional We
bKitPoint p); | 144 [Default=Undefined] optional We
bKitPoint p); |
| 145 | 145 |
| 146 [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] re
adonly attribute DOMApplicationCache applicationCache; | 146 [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] re
adonly attribute ApplicationCache applicationCache; |
| 147 | 147 |
| 148 [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds, Ge
tterRaisesException] readonly attribute Storage sessionStorage; | 148 [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds, Ge
tterRaisesException] readonly attribute Storage sessionStorage; |
| 149 [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds, Ge
tterRaisesException] readonly attribute Storage localStorage; | 149 [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds, Ge
tterRaisesException] readonly attribute Storage localStorage; |
| 150 | 150 |
| 151 // This is the interface orientation in degrees. Some examples are: | 151 // This is the interface orientation in degrees. Some examples are: |
| 152 // 0 is straight up; -90 is when the device is rotated 90 clockwise; | 152 // 0 is straight up; -90 is when the device is rotated 90 clockwise; |
| 153 // 90 is when rotated counter clockwise. | 153 // 90 is when rotated counter clockwise. |
| 154 [Conditional=ORIENTATION_EVENTS] readonly attribute long orientation; | 154 [Conditional=ORIENTATION_EVENTS] readonly attribute long orientation; |
| 155 | 155 |
| 156 [Replaceable] readonly attribute Console console; | 156 [Replaceable] readonly attribute Console console; |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 // window.toString() requires special handling in V8 | 301 // window.toString() requires special handling in V8 |
| 302 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 302 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
| 303 | 303 |
| 304 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned
long index); | 304 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned
long index); |
| 305 [Custom, NotEnumerable] getter Window (DOMString name); | 305 [Custom, NotEnumerable] getter Window (DOMString name); |
| 306 }; | 306 }; |
| 307 | 307 |
| 308 Window implements ImageBitmapFactories; | 308 Window implements ImageBitmapFactories; |
| 309 Window implements WindowTimers; | 309 Window implements WindowTimers; |
| 310 Window implements WindowBase64; | 310 Window implements WindowBase64; |
| OLD | NEW |