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

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

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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 187
188 int lastSpellCheckRequestSequence(Document*, ExceptionState&); 188 int lastSpellCheckRequestSequence(Document*, ExceptionState&);
189 int lastSpellCheckProcessedSequence(Document*, ExceptionState&); 189 int lastSpellCheckProcessedSequence(Document*, ExceptionState&);
190 190
191 Vector<AtomicString> userPreferredLanguages() const; 191 Vector<AtomicString> userPreferredLanguages() const;
192 void setUserPreferredLanguages(const Vector<String>&); 192 void setUserPreferredLanguages(const Vector<String>&);
193 193
194 unsigned activeDOMObjectCount(Document*); 194 unsigned activeDOMObjectCount(Document*);
195 unsigned wheelEventHandlerCount(Document*); 195 unsigned wheelEventHandlerCount(Document*);
196 unsigned scrollEventHandlerCount(Document*); 196 unsigned scrollEventHandlerCount(Document*);
197 unsigned touchEventHandlerCount(Document*); 197 unsigned touchStartOrMoveEventHandlerCount(Document*);
198 unsigned touchEndOrCancelEventHandlerCount(Document*);
198 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); 199 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&);
199 200
200 bool executeCommand(Document*, const String& name, const String& value, Exce ptionState&); 201 bool executeCommand(Document*, const String& name, const String& value, Exce ptionState&);
201 202
202 AtomicString htmlNamespace(); 203 AtomicString htmlNamespace();
203 Vector<AtomicString> htmlTags(); 204 Vector<AtomicString> htmlTags();
204 AtomicString svgNamespace(); 205 AtomicString svgNamespace();
205 Vector<AtomicString> svgTags(); 206 Vector<AtomicString> svgTags();
206 207
207 // This is used to test rect based hit testing like what's done on touch scr eens. 208 // This is used to test rect based hit testing like what's done on touch scr eens.
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 416
416 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 417 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
417 Member<InternalRuntimeFlags> m_runtimeFlags; 418 Member<InternalRuntimeFlags> m_runtimeFlags;
418 419
419 IterationSource* startIteration(ScriptState*, ExceptionState&) override; 420 IterationSource* startIteration(ScriptState*, ExceptionState&) override;
420 }; 421 };
421 422
422 } // namespace blink 423 } // namespace blink
423 424
424 #endif // Internals_h 425 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698