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

Side by Side Diff: chrome/test/data/extensions/api_test/automation/tests/location_scaled/buttons.html

Issue 2911553002: Fix automation API bounding boxes on high-dpi devices (Closed)
Patch Set: Add comment about mutating cache Created 3 years, 7 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>
2 <head>
3 <title>Page with some absolute-positioned buttons</title>
4 <style>
5 body {
6 margin: 0;
7 padding: 0;
8 }
9 button {
10 position: absolute;
11 width: 200px;
12 height: 100px;
13 outline: 1px solid #000;
14 }
15 .first {
16 left: 0px;
17 top: 0px;
18 }
19 .second {
20 left: 225px;
21 top: 25px;
22 }
23 </style>
24 </head>
25 <body>
26 <button class="first">First</button>
27 <button class="second">Second</button>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698