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