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

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: Move the touch event handlers to the container in the shadow dom 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
151 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value); 153 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value);
152 154
153 DOMString htmlNamespace(); 155 DOMString htmlNamespace();
154 sequence<DOMString> htmlTags(); 156 sequence<DOMString> htmlTags();
155 DOMString svgNamespace(); 157 DOMString svgNamespace();
156 sequence<DOMString> svgTags(); 158 sequence<DOMString> svgTags();
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 346
345 void setMediaElementNetworkState(HTMLMediaElement element, long state); 347 void setMediaElementNetworkState(HTMLMediaElement element, long state);
346 348
347 // TODO(liberato): remove once autoplay gesture override experiment conclude s. 349 // TODO(liberato): remove once autoplay gesture override experiment conclude s.
348 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); 350 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement);
349 351
350 DOMString getScrollAnimationState(Node node); 352 DOMString getScrollAnimationState(Node node);
351 353
352 DOMString getProgrammaticScrollAnimationState(Node node); 354 DOMString getProgrammaticScrollAnimationState(Node node);
353 }; 355 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698