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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-background-fractional-offset-expected.html

Issue 2727223002: Round the subpixel accumulation used for composited scrolling content (Closed)
Patch Set: Merge and remove subpixel adjustment for transformed fragments. 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 <!DOCTYPE html>
2 <style>
3 .layout-container {
4 width: 212px;
5 position: relative;
6 }
7 .position-container {
8 position: relative;
9 width: 204px;
10 margin-left: auto;
11 margin-right: auto;
12 }
13
14 #overflow {
15 background: #0f0;
16 width: 50%;
17 height: 100px;
18 overflow: scroll;
19 position: absolute;
20 }
21
22 .spacer {
23 height: 2000px;
24 }
25 </style>
26
27 <body>
28 <div class="layout-container">
29 <div class="position-container">
30 <div id="overflow">
31 <div class="spacer">
32 </div>
33 </div>
34 </div>
35 </div>
36 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698