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

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

Issue 2747333003: Make Document.createTouch arguments non-optional (Closed)
Patch Set: Codereview: update tests as suggested Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/events/touch/touch-event-dispatch-no-crash.html ('k') | no next file » | 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 readonly attribute Element? scrollingElement; 149 readonly attribute Element? scrollingElement;
150 150
151 // Pointer Lock 151 // Pointer Lock
152 // https://w3c.github.io/pointerlock/#extensions-to-the-document-interface 152 // https://w3c.github.io/pointerlock/#extensions-to-the-document-interface
153 attribute EventHandler onpointerlockchange; 153 attribute EventHandler onpointerlockchange;
154 attribute EventHandler onpointerlockerror; 154 attribute EventHandler onpointerlockerror;
155 [MeasureAs=DocumentExitPointerLock] void exitPointerLock(); 155 [MeasureAs=DocumentExitPointerLock] void exitPointerLock();
156 156
157 // Touch Events 157 // Touch Events
158 // https://w3c.github.io/touch-events/#extensions-to-the-document-interface 158 // https://w3c.github.io/touch-events/#extensions-to-the-document-interface
159 // FIXME: The arguments should not be optional.
160 [RuntimeEnabled=TouchEventFeatureDetection, Measure, LegacyInterfaceTypeChec king, Custom=CallPrologue] 159 [RuntimeEnabled=TouchEventFeatureDetection, Measure, LegacyInterfaceTypeChec king, Custom=CallPrologue]
161 Touch createTouch([Default=Undefined] optional Window window, 160 Touch createTouch(Window view,
162 [Default=Undefined] optional EventTarget target, 161 EventTarget target,
163 [Default=Undefined] optional long identifier, 162 long identifier,
164 [Default=Undefined] optional unrestricted double pageX, 163 double pageX,
165 [Default=Undefined] optional unrestricted double pageY, 164 double pageY,
166 [Default=Undefined] optional unrestricted double screenX, 165 double screenX,
167 [Default=Undefined] optional unrestricted double screenY, 166 double screenY,
168 [Default=Undefined] optional unrestricted double radiusX, 167 optional unrestricted double radiusX = 0,
169 [Default=Undefined] optional unrestricted double radiusY, 168 optional unrestricted double radiusY = 0,
170 [Default=Undefined] optional unrestricted float rotationAn gle, 169 optional unrestricted float rotationAngle = 0,
171 [Default=Undefined] optional unrestricted float force); 170 optional unrestricted float force = 0);
172 [RuntimeEnabled=TouchEventFeatureDetection] TouchList createTouchList(Touch. .. touches); 171 [RuntimeEnabled=TouchEventFeatureDetection] TouchList createTouchList(Touch. .. touches);
173 172
174 // Custom Elements 173 // Custom Elements
175 // https://w3c.github.io/webcomponents/spec/custom/#extensions-to-document-i nterface-to-register 174 // https://w3c.github.io/webcomponents/spec/custom/#extensions-to-document-i nterface-to-register
176 // FIXME: The registerElement return type should be Function. 175 // FIXME: The registerElement return type should be Function.
177 [CallWith=ScriptState, CustomElementCallbacks, RaisesException, MeasureAs=Do cumentRegisterElement] CustomElementConstructor registerElement(DOMString type, optional ElementRegistrationOptions options); 176 [CallWith=ScriptState, CustomElementCallbacks, RaisesException, MeasureAs=Do cumentRegisterElement] CustomElementConstructor registerElement(DOMString type, optional ElementRegistrationOptions options);
178 // https://w3c.github.io/webcomponents/spec/custom/#extensions-to-document-i nterface-to-instantiate 177 // https://w3c.github.io/webcomponents/spec/custom/#extensions-to-document-i nterface-to-instantiate
179 // FIXME: The typeExtension arguments should not be nullable. 178 // FIXME: The typeExtension arguments should not be nullable.
180 [CustomElementCallbacks, PerWorldBindings, RaisesException] Element createEl ement(DOMString localName, (DOMString or Dictionary)? options); 179 [CustomElementCallbacks, PerWorldBindings, RaisesException] Element createEl ement(DOMString localName, (DOMString or Dictionary)? options);
181 [CustomElementCallbacks, RaisesException] Element createElementNS(DOMString? namespaceURI, DOMString qualifiedName, (DOMString or Dictionary)? options); 180 [CustomElementCallbacks, RaisesException] Element createElementNS(DOMString? namespaceURI, DOMString qualifiedName, (DOMString or Dictionary)? options);
(...skipping 27 matching lines...) Expand all
209 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation; 208 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation;
210 attribute EventHandler onselectionchange; 209 attribute EventHandler onselectionchange;
211 attribute EventHandler onselectstart; 210 attribute EventHandler onselectstart;
212 attribute EventHandler onwheel; 211 attribute EventHandler onwheel;
213 }; 212 };
214 213
215 Document implements GlobalEventHandlers; 214 Document implements GlobalEventHandlers;
216 Document implements ParentNode; 215 Document implements ParentNode;
217 Document implements NonElementParentNode; 216 Document implements NonElementParentNode;
218 Document implements DocumentOrShadowRoot; 217 Document implements DocumentOrShadowRoot;
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/events/touch/touch-event-dispatch-no-crash.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698