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

Side by Side Diff: LayoutTests/compositing/backgrounds/fixed-backgrounds-expected.html

Issue 102123013: Fix painting of fixed background images in composited layers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixes per review comments Created 6 years, 9 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
OLDNEW
(Empty)
1 <style>
esprehn 2014/04/01 22:00:13 same
2 body {
3 height: 2000px;
4 width: 2000px;
5 overflow: hidden;
6 }
7
8 .box {
9 height: 300px;
10 width: 300px;
11 margin: 20px;
12 margin-left: 10px;
13 background-image: url('../resources/alpha-blocks.png');
14 background-size: 500px 300px;
15 background-repeat: no-repeat;
16 background-attachment: fixed;
17 box-shadow: 10px 10px 0px gray; /* inflates composited bounds */
18 border: 4px solid gray;
19 float: left;
20 }
21 </style>
22 <script>
23 function doTest()
24 {
25 window.scrollTo(35, 45);
26 }
27 window.addEventListener('load', doTest, false);
28 </script>
29 <div class="box"></div>
30 <div class="box"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698