| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> | 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 [TreatReturnedNullStringAs=Undefined, TreatNullAs=NullString] attri
bute DOMString charset; | 143 [TreatReturnedNullStringAs=Undefined, TreatNullAs=NullString] attri
bute DOMString charset; |
| 144 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString defaultCh
arset; | 144 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString defaultCh
arset; |
| 145 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat
e; | 145 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat
e; |
| 146 | 146 |
| 147 Element elementFromPoint([Default=Undefined] optional long x, | 147 Element elementFromPoint([Default=Undefined] optional long x, |
| 148 [Default=Undefined] optional long y); | 148 [Default=Undefined] optional long y); |
| 149 Range caretRangeFromPoint([Default=Undefined] optional long x, | 149 Range caretRangeFromPoint([Default=Undefined] optional long x, |
| 150 [Default=Undefined] optional long y); | 150 [Default=Undefined] optional long y); |
| 151 | 151 |
| 152 // Mozilla extensions | 152 // Mozilla extensions |
| 153 DOMSelection getSelection(); | 153 Selection getSelection(); |
| 154 [TreatReturnedNullStringAs=Null] readonly attribute DOMString characterSet; | 154 [TreatReturnedNullStringAs=Null] readonly attribute DOMString characterSet; |
| 155 | 155 |
| 156 // WebKit extensions | 156 // WebKit extensions |
| 157 | 157 |
| 158 [TreatReturnedNullStringAs=Null] readonly attribute DOMString preferredStyle
sheetSet; | 158 [TreatReturnedNullStringAs=Null] readonly attribute DOMString preferredStyle
sheetSet; |
| 159 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute
DOMString selectedStylesheetSet; | 159 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute
DOMString selectedStylesheetSet; |
| 160 | 160 |
| 161 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString na
me, long width, long height); | 161 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString na
me, long width, long height); |
| 162 | 162 |
| 163 // HTML 5 | 163 // HTML 5 |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 [EnabledAtRuntime=customDOMElements, ImplementedAs=registerElement, CallWith
=ScriptState, DeliverCustomElementCallbacks, RaisesException] CustomElementConst
ructor webkitRegister(DOMString name, optional Dictionary options); | 279 [EnabledAtRuntime=customDOMElements, ImplementedAs=registerElement, CallWith
=ScriptState, DeliverCustomElementCallbacks, RaisesException] CustomElementConst
ructor webkitRegister(DOMString name, optional Dictionary options); |
| 280 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola
tedWorlds, RaisesException] Element createElement(DOMString localName, [TreatNul
lAs=NullString] DOMString typeExtension); | 280 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola
tedWorlds, RaisesException] Element createElement(DOMString localName, [TreatNul
lAs=NullString] DOMString typeExtension); |
| 281 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola
tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString] DOM
String namespaceURI, DOMString qualifiedName, | 281 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola
tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString] DOM
String namespaceURI, DOMString qualifiedName, |
| 282 [TreatNullAs=NullString] DOMString typeExtension); | 282 [TreatNullAs=NullString] DOMString typeExtension); |
| 283 | 283 |
| 284 // Page visibility API. | 284 // Page visibility API. |
| 285 readonly attribute DOMString webkitVisibilityState; | 285 readonly attribute DOMString webkitVisibilityState; |
| 286 readonly attribute boolean webkitHidden; | 286 readonly attribute boolean webkitHidden; |
| 287 | 287 |
| 288 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces | 288 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces |
| 289 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib
ute DOMSecurityPolicy securityPolicy; | 289 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib
ute SecurityPolicy securityPolicy; |
| 290 | 290 |
| 291 }; | 291 }; |
| 292 | 292 |
| OLD | NEW |