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

Side by Side Diff: LayoutTests/compositing/gestures/gesture-tapHighlight-inline-block-crash.html

Issue 622253004: Use a composed tree based traversal in computing quads in LinkHighlight::computeQuads(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: no pixel test Created 6 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/compositing/gestures/gesture-tapHighlight-inline-block-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <a href="" id="targetLink" width="320" height="240" ><div>Shoudn't crash</div></ a>
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
7 }
8 var targetLink = document.querySelector('#targetLink');
9 var clientRect = targetLink.getBoundingClientRect();
10 x = (clientRect.left + clientRect.right) / 2;
11 y = (clientRect.top + clientRect.bottom) / 2;
12 if (window.eventSender) {
13 eventSender.gestureShowPress(x, y);
14 window.setTimeout(function() { window.testRunner.notifyDone(); }, 0);
15 } else {
16 debug("This test requires DumpRenderTree.");
17 }
18 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/compositing/gestures/gesture-tapHighlight-inline-block-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698