Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Side by Side Diff: Source/core/dom/Document.idl

Issue 23522051: Get rid of custom code for Document::createTouchList() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add missing references Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 [Default=Undefined] optional Even tTarget target, 252 [Default=Undefined] optional Even tTarget target,
253 [Default=Undefined] optional long identifier, 253 [Default=Undefined] optional long identifier,
254 [Default=Undefined] optional long pageX, 254 [Default=Undefined] optional long pageX,
255 [Default=Undefined] optional long pageY, 255 [Default=Undefined] optional long pageY,
256 [Default=Undefined] optional long screenX, 256 [Default=Undefined] optional long screenX,
257 [Default=Undefined] optional long screenY, 257 [Default=Undefined] optional long screenY,
258 [Default=Undefined] optional long webkitRadiusX, 258 [Default=Undefined] optional long webkitRadiusX,
259 [Default=Undefined] optional long webkitRadiusY, 259 [Default=Undefined] optional long webkitRadiusY,
260 [Default=Undefined] optional floa t webkitRotationAngle, 260 [Default=Undefined] optional floa t webkitRotationAngle,
261 [Default=Undefined] optional floa t webkitForce); 261 [Default=Undefined] optional floa t webkitForce);
262 [EnabledAtRuntime=Touch, Custom, RaisesException] TouchList createTouchList( ); 262 [EnabledAtRuntime=Touch] TouchList createTouchList(Touch... touches);
263 263
264 [DeprecateAs=PrefixedDocumentRegister, EnabledAtRuntime=CustomElements, Impl ementedAs=registerElement, CallWith=ScriptState, CustomElementCallbacks=Enable, RaisesException] CustomElementConstructor webkitRegister(DOMString name, optiona l Dictionary options); 264 [DeprecateAs=PrefixedDocumentRegister, EnabledAtRuntime=CustomElements, Impl ementedAs=registerElement, CallWith=ScriptState, CustomElementCallbacks=Enable, RaisesException] CustomElementConstructor webkitRegister(DOMString name, optiona l Dictionary options);
265 [EnabledAtRuntime=CustomElements, ImplementedAs=registerElement, CallWith=Sc riptState, CustomElementCallbacks=Enable, RaisesException] CustomElementConstruc tor register(DOMString name, optional Dictionary options); 265 [EnabledAtRuntime=CustomElements, ImplementedAs=registerElement, CallWith=Sc riptState, CustomElementCallbacks=Enable, RaisesException] CustomElementConstruc tor register(DOMString name, optional Dictionary options);
266 [CustomElementCallbacks=Enable, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElement(DOMString localName, [TreatNul lAs=NullString] DOMString typeExtension); 266 [CustomElementCallbacks=Enable, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElement(DOMString localName, [TreatNul lAs=NullString] DOMString typeExtension);
267 [CustomElementCallbacks=Enable, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString] DOM String namespaceURI, DOMString qualifiedName, 267 [CustomElementCallbacks=Enable, PerWorldBindings, ActivityLog=AccessForIsola tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString] DOM String namespaceURI, DOMString qualifiedName,
268 [TreatNullAs=NullString] DOMString typeExtension); 268 [TreatNullAs=NullString] DOMString typeExtension);
269 269
270 // Page visibility API. 270 // Page visibility API.
271 readonly attribute DOMString webkitVisibilityState; 271 readonly attribute DOMString webkitVisibilityState;
272 readonly attribute boolean webkitHidden; 272 readonly attribute boolean webkitHidden;
273 273
274 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces 274 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces
275 [EnabledAtRuntime=ExperimentalContentSecurityPolicyFeatures] readonly attrib ute SecurityPolicy securityPolicy; 275 [EnabledAtRuntime=ExperimentalContentSecurityPolicyFeatures] readonly attrib ute SecurityPolicy securityPolicy;
276 276
277 readonly attribute HTMLScriptElement currentScript; 277 readonly attribute HTMLScriptElement currentScript;
278 }; 278 };
279 279
280 Document implements ParentNode; 280 Document implements ParentNode;
281 281
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698