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

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

Issue 14280004: Revert removal of events (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 [NotEnumerable] attribute EventListener onbeforecut; 247 [NotEnumerable] attribute EventListener onbeforecut;
248 [NotEnumerable] attribute EventListener oncut; 248 [NotEnumerable] attribute EventListener oncut;
249 [NotEnumerable] attribute EventListener onbeforecopy; 249 [NotEnumerable] attribute EventListener onbeforecopy;
250 [NotEnumerable] attribute EventListener oncopy; 250 [NotEnumerable] attribute EventListener oncopy;
251 [NotEnumerable] attribute EventListener onbeforepaste; 251 [NotEnumerable] attribute EventListener onbeforepaste;
252 [NotEnumerable] attribute EventListener onpaste; 252 [NotEnumerable] attribute EventListener onpaste;
253 [NotEnumerable] attribute EventListener onreset; 253 [NotEnumerable] attribute EventListener onreset;
254 [NotEnumerable] attribute EventListener onsearch; 254 [NotEnumerable] attribute EventListener onsearch;
255 [NotEnumerable] attribute EventListener onselectstart; 255 [NotEnumerable] attribute EventListener onselectstart;
256 [NotEnumerable] attribute EventListener onselectionchange; 256 [NotEnumerable] attribute EventListener onselectionchange;
257 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchstart; 257 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute Ev entListener ontouchstart;
258 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchmove; 258 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute Ev entListener ontouchmove;
259 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchend; 259 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute Ev entListener ontouchend;
260 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchcancel ; 260 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute Ev entListener ontouchcancel;
261 [NotEnumerable] attribute EventListener onwebkitfullscreenchange; 261 [NotEnumerable] attribute EventListener onwebkitfullscreenchange;
262 [NotEnumerable] attribute EventListener onwebkitfullscreenerror; 262 [NotEnumerable] attribute EventListener onwebkitfullscreenerror;
263 [NotEnumerable] attribute EventListener onwebkitpointerlockchange; 263 [NotEnumerable] attribute EventListener onwebkitpointerlockchange;
264 [NotEnumerable] attribute EventListener onwebkitpointerlockerror; 264 [NotEnumerable] attribute EventListener onwebkitpointerlockerror;
265 [NotEnumerable, EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute EventListener onsecuritypolicyviolation; 265 [NotEnumerable, EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute EventListener onsecuritypolicyviolation;
266 266
267 #if defined(ENABLE_TOUCH_EVENTS) && ENABLE_TOUCH_EVENTS
267 [ReturnNewObject, EnabledAtRuntime=touch, RaisesException] Touch createTouch ([Default=Undefined] optional DOMWindow window, 268 [ReturnNewObject, EnabledAtRuntime=touch, RaisesException] Touch createTouch ([Default=Undefined] optional DOMWindow window,
268 [Default=Undefined] optiona l EventTarget target, 269 [Default=Undefined] optiona l EventTarget target,
269 [Default=Undefined] optiona l long identifier, 270 [Default=Undefined] optiona l long identifier,
270 [Default=Undefined] optiona l long pageX, 271 [Default=Undefined] optiona l long pageX,
271 [Default=Undefined] optiona l long pageY, 272 [Default=Undefined] optiona l long pageY,
272 [Default=Undefined] optiona l long screenX, 273 [Default=Undefined] optiona l long screenX,
273 [Default=Undefined] optiona l long screenY, 274 [Default=Undefined] optiona l long screenY,
274 [Default=Undefined] optiona l long webkitRadiusX, 275 [Default=Undefined] optiona l long webkitRadiusX,
275 [Default=Undefined] optiona l long webkitRadiusY, 276 [Default=Undefined] optiona l long webkitRadiusY,
276 [Default=Undefined] optiona l float webkitRotationAngle, 277 [Default=Undefined] optiona l float webkitRotationAngle,
277 [Default=Undefined] optiona l float webkitForce); 278 [Default=Undefined] optiona l float webkitForce);
278 [ReturnNewObject, EnabledAtRuntime=touch, Custom, RaisesException] TouchList createTouchList(); 279 [ReturnNewObject, EnabledAtRuntime=touch, Custom, RaisesException] TouchList createTouchList();
280 #endif
279 281
280 #if defined(ENABLE_CUSTOM_ELEMENTS) && ENABLE_CUSTOM_ELEMENTS 282 #if defined(ENABLE_CUSTOM_ELEMENTS) && ENABLE_CUSTOM_ELEMENTS
281 [EnabledAtRuntime=customDOMElements, Conditional=CUSTOM_ELEMENTS, Implemente dAs=registerElement, CallWith=ScriptState, DeliverCustomElementCallbacks, Raises Exception] CustomElementConstructor webkitRegister(DOMString name, optional Dict ionary options); 283 [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); 284 [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, 285 [ReturnNewObject, DeliverCustomElementCallbacks, PerWorldBindings, ActivityL og=AccessForIsolatedWorlds, RaisesException] Element createElementNS([TreatNullA s=NullString] DOMString namespaceURI, DOMString qualifiedName,
284 [TreatNullAs=NullString] DOMString typeExtension); 286 [TreatNullAs=NullString] DOMString typeExtension);
285 #endif 287 #endif
286 288
287 // Page visibility API. 289 // Page visibility API.
288 readonly attribute DOMString webkitVisibilityState; 290 readonly attribute DOMString webkitVisibilityState;
289 readonly attribute boolean webkitHidden; 291 readonly attribute boolean webkitHidden;
290 292
291 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces 293 // 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; 294 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib ute DOMSecurityPolicy securityPolicy;
293 295
294 }; 296 };
295 297
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698