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

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

Issue 1895303007: Non passive touch end or touch cancel listeners should not block scroll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2704
Patch Set: Created 4 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
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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 138
139 [RaisesException] long lastSpellCheckRequestSequence(Document document); 139 [RaisesException] long lastSpellCheckRequestSequence(Document document);
140 [RaisesException] long lastSpellCheckProcessedSequence(Document document); 140 [RaisesException] long lastSpellCheckProcessedSequence(Document document);
141 141
142 sequence<DOMString> userPreferredLanguages(); 142 sequence<DOMString> userPreferredLanguages();
143 void setUserPreferredLanguages(sequence<DOMString> languages); 143 void setUserPreferredLanguages(sequence<DOMString> languages);
144 144
145 unsigned long activeDOMObjectCount(Document document); 145 unsigned long activeDOMObjectCount(Document document);
146 unsigned long wheelEventHandlerCount(Document document); 146 unsigned long wheelEventHandlerCount(Document document);
147 unsigned long scrollEventHandlerCount(Document document); 147 unsigned long scrollEventHandlerCount(Document document);
148 unsigned long touchEventHandlerCount(Document document); 148 unsigned long touchStartOrMoveEventHandlerCount(Document document);
149 unsigned long touchEndOrCancelEventHandlerCount(Document document);
149 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document ); 150 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document );
150 151
151 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value); 152 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value);
152 153
153 DOMString htmlNamespace(); 154 DOMString htmlNamespace();
154 sequence<DOMString> htmlTags(); 155 sequence<DOMString> htmlTags();
155 DOMString svgNamespace(); 156 DOMString svgNamespace();
156 sequence<DOMString> svgTags(); 157 sequence<DOMString> svgTags();
157 158
158 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, 159 [RaisesException] NodeList nodesFromRect(Document document, long x, long y,
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 357
357 void setMediaElementNetworkState(HTMLMediaElement element, long state); 358 void setMediaElementNetworkState(HTMLMediaElement element, long state);
358 359
359 // TODO(liberato): remove once autoplay gesture override experiment conclude s. 360 // TODO(liberato): remove once autoplay gesture override experiment conclude s.
360 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); 361 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement);
361 362
362 DOMString getScrollAnimationState(Node node); 363 DOMString getScrollAnimationState(Node node);
363 364
364 DOMString getProgrammaticScrollAnimationState(Node node); 365 DOMString getProgrammaticScrollAnimationState(Node node);
365 }; 366 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | third_party/WebKit/Source/web/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698