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

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

Issue 1884863003: Non passive touch end or touch cancel listeners should not block scroll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust comments 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 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 touchEventHandlerCount(Document document); 147 unsigned long touchEventHandlerCount(Document document);
Rick Byers 2016/04/14 01:41:41 nit: please rename this to make it clear it's only
dtapuska 2016/04/14 14:41:11 Done.
148 unsigned long touchEndOrCancelEventHandlerCount(Document document);
148 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document ); 149 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document );
149 150
150 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value); 151 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value);
151 152
152 DOMString htmlNamespace(); 153 DOMString htmlNamespace();
153 sequence<DOMString> htmlTags(); 154 sequence<DOMString> htmlTags();
154 DOMString svgNamespace(); 155 DOMString svgNamespace();
155 sequence<DOMString> svgTags(); 156 sequence<DOMString> svgTags();
156 157
157 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, 158 [RaisesException] NodeList nodesFromRect(Document document, long x, long y,
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 355
355 void setMediaElementNetworkState(HTMLMediaElement element, long state); 356 void setMediaElementNetworkState(HTMLMediaElement element, long state);
356 357
357 // TODO(liberato): remove once autoplay gesture override experiment conclude s. 358 // TODO(liberato): remove once autoplay gesture override experiment conclude s.
358 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); 359 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement);
359 360
360 DOMString getScrollAnimationState(Node node); 361 DOMString getScrollAnimationState(Node node);
361 362
362 DOMString getProgrammaticScrollAnimationState(Node node); 363 DOMString getProgrammaticScrollAnimationState(Node node);
363 }; 364 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698