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

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

Issue 17471008: Rework compositor touch hit testing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Various fixes and test additions Created 7 years, 5 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l ong width, long height, Document document); 132 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l ong width, long height, Document document);
133 133
134 [RaisesException] long lastSpellCheckRequestSequence(Document document); 134 [RaisesException] long lastSpellCheckRequestSequence(Document document);
135 [RaisesException] long lastSpellCheckProcessedSequence(Document document); 135 [RaisesException] long lastSpellCheckProcessedSequence(Document document);
136 136
137 sequence<DOMString> userPreferredLanguages(); 137 sequence<DOMString> userPreferredLanguages();
138 void setUserPreferredLanguages(sequence<DOMString> languages); 138 void setUserPreferredLanguages(sequence<DOMString> languages);
139 139
140 [RaisesException] unsigned long wheelEventHandlerCount(Document document); 140 [RaisesException] unsigned long wheelEventHandlerCount(Document document);
141 [RaisesException] unsigned long touchEventHandlerCount(Document document); 141 [RaisesException] unsigned long touchEventHandlerCount(Document document);
142 [RaisesException] ClientRectList touchEventTargetClientRects(Document docume nt); 142 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document );
143 [RaisesException] unsigned long touchEventTargetLayerRectsUpdateCount(Docume nt document);
143 144
144 [RaisesException] NodeList nodesFromRect(Document document, long x, long y, 145 [RaisesException] NodeList nodesFromRect(Document document, long x, long y,
145 unsigned long topPadding, unsigned long rightPadding, unsigned long bott omPadding, unsigned long leftPadding, 146 unsigned long topPadding, unsigned long rightPadding, unsigned long bott omPadding, unsigned long leftPadding,
146 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr ameContent); 147 boolean ignoreClipping, boolean allowShadowContent, boolean allowChildFr ameContent);
147 148
148 void emitInspectorDidBeginFrame(); 149 void emitInspectorDidBeginFrame();
149 void emitInspectorDidCancelFrame(); 150 void emitInspectorDidCancelFrame();
150 151
151 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo ng length); 152 [RaisesException] boolean hasSpellingMarker(Document document, long from, lo ng length);
152 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon g length); 153 [RaisesException] boolean hasGrammarMarker(Document document, long from, lon g length);
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 void forceReload(boolean endToEnd); 247 void forceReload(boolean endToEnd);
247 248
248 void enableMockSpeechSynthesizer(); 249 void enableMockSpeechSynthesizer();
249 250
250 [RaisesException] DOMString getImageSourceURL(Element element); 251 [RaisesException] DOMString getImageSourceURL(Element element);
251 252
252 boolean isSelectPopupVisible(Node node); 253 boolean isSelectPopupVisible(Node node);
253 254
254 [RaisesException] ClientRect selectionBounds(); 255 [RaisesException] ClientRect selectionBounds();
255 }; 256 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698