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

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.idl

Issue 2209773002: Remove the blocking touch handlers for the input[type=range] and add touch-action instead (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: style.. Created 4 years, 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 137
138 [RaisesException] long lastSpellCheckRequestSequence(Document document); 138 [RaisesException] long lastSpellCheckRequestSequence(Document document);
139 [RaisesException] long lastSpellCheckProcessedSequence(Document document); 139 [RaisesException] long lastSpellCheckProcessedSequence(Document document);
140 140
141 sequence<DOMString> userPreferredLanguages(); 141 sequence<DOMString> userPreferredLanguages();
142 void setUserPreferredLanguages(sequence<DOMString> languages); 142 void setUserPreferredLanguages(sequence<DOMString> languages);
143 143
144 unsigned long activeDOMObjectCount(Document document); 144 unsigned long activeDOMObjectCount(Document document);
145 unsigned long wheelEventHandlerCount(Document document); 145 unsigned long wheelEventHandlerCount(Document document);
146 unsigned long scrollEventHandlerCount(Document document); 146 unsigned long scrollEventHandlerCount(Document document);
147 unsigned long blockingTouchStartOrMoveEventHandlerCount(Document document);
148 unsigned long passiveTouchStartOrMoveEventHandlerCount(Document document);
147 unsigned long touchStartOrMoveEventHandlerCount(Document document); 149 unsigned long touchStartOrMoveEventHandlerCount(Document document);
148 unsigned long touchEndOrCancelEventHandlerCount(Document document); 150 unsigned long touchEndOrCancelEventHandlerCount(Document document);
149 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document ); 151 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document );
150 152
153 DOMString touchActionType(Element inputElement);
154
151 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value); 155 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value);
152 156
153 DOMString htmlNamespace(); 157 DOMString htmlNamespace();
154 sequence<DOMString> htmlTags(); 158 sequence<DOMString> htmlTags();
155 DOMString svgNamespace(); 159 DOMString svgNamespace();
156 sequence<DOMString> svgTags(); 160 sequence<DOMString> svgTags();
157 161
158 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, 162 [RaisesException] NodeList nodesFromRect(Document document, long x, long y,
159 unsigned long topPadding, unsigned long rightPadding, unsigned long bott omPadding, unsigned long leftPadding, 163 unsigned long topPadding, unsigned long rightPadding, unsigned long bott omPadding, unsigned long leftPadding,
160 boolean ignoreClipping, boolean allowChildFrameContent); 164 boolean ignoreClipping, boolean allowChildFrameContent);
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 348
345 void setMediaElementNetworkState(HTMLMediaElement element, long state); 349 void setMediaElementNetworkState(HTMLMediaElement element, long state);
346 350
347 // TODO(liberato): remove once autoplay gesture override experiment conclude s. 351 // TODO(liberato): remove once autoplay gesture override experiment conclude s.
348 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); 352 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement);
349 353
350 DOMString getScrollAnimationState(Node node); 354 DOMString getScrollAnimationState(Node node);
351 355
352 DOMString getProgrammaticScrollAnimationState(Node node); 356 DOMString getProgrammaticScrollAnimationState(Node node);
353 }; 357 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698