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

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

Issue 354613002: Add test to track the number of hit tests on various events (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merge with trunk Created 6 years, 6 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 | Annotate | Revision Log
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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 121
122 // FIXME: Rename these functions if walker is prefered. 122 // FIXME: Rename these functions if walker is prefered.
123 Node* nextSiblingByWalker(Node*, ExceptionState&); 123 Node* nextSiblingByWalker(Node*, ExceptionState&);
124 Node* firstChildByWalker(Node*, ExceptionState&); 124 Node* firstChildByWalker(Node*, ExceptionState&);
125 Node* lastChildByWalker(Node*, ExceptionState&); 125 Node* lastChildByWalker(Node*, ExceptionState&);
126 Node* nextNodeByWalker(Node*, ExceptionState&); 126 Node* nextNodeByWalker(Node*, ExceptionState&);
127 Node* previousNodeByWalker(Node*, ExceptionState&); 127 Node* previousNodeByWalker(Node*, ExceptionState&);
128 128
129 unsigned updateStyleAndReturnAffectedElementCount(ExceptionState&) const; 129 unsigned updateStyleAndReturnAffectedElementCount(ExceptionState&) const;
130 unsigned needsLayoutCount(ExceptionState&) const; 130 unsigned needsLayoutCount(ExceptionState&) const;
131 unsigned hitTestCountDelta(Document*, ExceptionState&) const;
131 132
132 String visiblePlaceholder(Element*); 133 String visiblePlaceholder(Element*);
133 void selectColorInColorChooser(Element*, const String& colorValue); 134 void selectColorInColorChooser(Element*, const String& colorValue);
134 bool hasAutofocusRequest(Document*); 135 bool hasAutofocusRequest(Document*);
135 bool hasAutofocusRequest(); 136 bool hasAutofocusRequest();
136 Vector<String> formControlStateOfHistoryItem(ExceptionState&); 137 Vector<String> formControlStateOfHistoryItem(ExceptionState&);
137 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState& ); 138 void setFormControlStateOfHistoryItem(const Vector<String>&, ExceptionState& );
138 void setEnableMockPagePopup(bool, ExceptionState&); 139 void setEnableMockPagePopup(bool, ExceptionState&);
139 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController(); 140 PassRefPtrWillBeRawPtr<PagePopupController> pagePopupController();
140 141
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&); 330 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&);
330 331
331 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 332 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
332 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; 333 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags;
333 RefPtrWillBeMember<InternalProfilers> m_profilers; 334 RefPtrWillBeMember<InternalProfilers> m_profilers;
334 }; 335 };
335 336
336 } // namespace WebCore 337 } // namespace WebCore
337 338
338 #endif 339 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698