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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/scaled-overflow.html

Issue 2416453006: Use the pixelSnappedScrollWidth/Height for contentsSize (Closed)
Patch Set: Spv2 expectations Created 4 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 body {
4 background: black;
5 transform: scale(0.75);
6 transform-origin: top left;
7 }
8
9 .scroller {
10 position: relative;
11 overflow: scroll;
12 width: 150px;
13 height: 150px;
14 background: white local;
15 }
16
17 .b {
18 left: 1px;
19 top: 10px;
20 }
21
22 .c {
23 left: 2px;
24 top: 20px;
25 }
26
27 .spacer {
28 height: 400px;
29 }
30 </style>
31 <div class="scroller"><div class="spacer"></div></div>
32 <div class="scroller b"><div class="spacer"></div></div>
33 <div class="scroller c"><div class="spacer"></div></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698