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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 [Default=Undefined] optiona
l long pageX, | 270 [Default=Undefined] optiona
l long pageX, |
271 [Default=Undefined] optiona
l long pageY, | 271 [Default=Undefined] optiona
l long pageY, |
272 [Default=Undefined] optiona
l long screenX, | 272 [Default=Undefined] optiona
l long screenX, |
273 [Default=Undefined] optiona
l long screenY, | 273 [Default=Undefined] optiona
l long screenY, |
274 [Default=Undefined] optiona
l long webkitRadiusX, | 274 [Default=Undefined] optiona
l long webkitRadiusX, |
275 [Default=Undefined] optiona
l long webkitRadiusY, | 275 [Default=Undefined] optiona
l long webkitRadiusY, |
276 [Default=Undefined] optiona
l float webkitRotationAngle, | 276 [Default=Undefined] optiona
l float webkitRotationAngle, |
277 [Default=Undefined] optiona
l float webkitForce); | 277 [Default=Undefined] optiona
l float webkitForce); |
278 [ReturnNewObject, EnabledAtRuntime=touch, Custom, RaisesException] TouchList
createTouchList(); | 278 [ReturnNewObject, EnabledAtRuntime=touch, Custom, RaisesException] TouchList
createTouchList(); |
279 | 279 |
280 #if defined(ENABLE_CUSTOM_ELEMENTS) && ENABLE_CUSTOM_ELEMENTS | 280 [EnabledAtRuntime=customDOMElements, ImplementedAs=registerElement, CallWith
=ScriptState, DeliverCustomElementCallbacks, RaisesException] CustomElementConst
ructor webkitRegister(DOMString name, optional Dictionary options); |
281 [EnabledAtRuntime=customDOMElements, Conditional=CUSTOM_ELEMENTS, Implemente
dAs=registerElement, CallWith=ScriptState, DeliverCustomElementCallbacks, Raises
Exception] CustomElementConstructor webkitRegister(DOMString name, optional Dict
ionary options); | |
282 [ReturnNewObject, DeliverCustomElementCallbacks, PerWorldBindings, ActivityL
og=AccessForIsolatedWorlds, RaisesException] Element createElement(DOMString loc
alName, [TreatNullAs=NullString] DOMString typeExtension); | 281 [ReturnNewObject, DeliverCustomElementCallbacks, PerWorldBindings, ActivityL
og=AccessForIsolatedWorlds, RaisesException] Element createElement(DOMString loc
alName, [TreatNullAs=NullString] DOMString typeExtension); |
283 [ReturnNewObject, DeliverCustomElementCallbacks, PerWorldBindings, ActivityL
og=AccessForIsolatedWorlds, RaisesException] Element createElementNS([TreatNullA
s=NullString] DOMString namespaceURI, DOMString qualifiedName, | 282 [ReturnNewObject, DeliverCustomElementCallbacks, PerWorldBindings, ActivityL
og=AccessForIsolatedWorlds, RaisesException] Element createElementNS([TreatNullA
s=NullString] DOMString namespaceURI, DOMString qualifiedName, |
284 [TreatNullAs=NullString] DOMString typeExtension); | 283 [TreatNullAs=NullString] DOMString typeExtension); |
285 #endif | |
286 | 284 |
287 // Page visibility API. | 285 // Page visibility API. |
288 readonly attribute DOMString webkitVisibilityState; | 286 readonly attribute DOMString webkitVisibilityState; |
289 readonly attribute boolean webkitHidden; | 287 readonly attribute boolean webkitHidden; |
290 | 288 |
291 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces | 289 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces |
292 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib
ute DOMSecurityPolicy securityPolicy; | 290 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib
ute DOMSecurityPolicy securityPolicy; |
293 | 291 |
294 }; | 292 }; |
295 | 293 |
OLD | NEW |