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

Side by Side Diff: Source/web/tests/data/disambiguation_popup_200_by_800.html

Issue 584893004: Use the pinch viewport offset for tap disambiguation. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added a unit test. Created 6 years, 3 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
(Empty)
1 <html>
jamesr 2014/09/23 23:25:16 add <!DOCTYPE html> since you aren't testing quirk
2 <head>
3 <title>Disambiguation Popup Test with Virtual Viewport</title>
4
5 <style type="text/css">
6 body {
7 margin: 0px;
8 }
9 .upper {
10 background-color: #ffbbaa;
11 width: 200px;
12 height: 400px;
13 }
14 .lower {
15 background-color: #ffddaa;
16 width: 200px;
17 height: 400px;
18 }
19 .horizontal-link {
20 display:block;
21 width:200px;
22 height:30px;
23 margin-top:2px;
24 background-color:#ccccff;
25 }
26 </style>
27 </head>
28 <body>
29 <div class="upper"></div>
30 <div class="lower">
31 <div style="height:200px"></div>
32 <a href="#" class="horizontal-link">Link 1</a>
33 <a href="#" class="horizontal-link">Link 2</a>
34 </div>
35 </body>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698