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

Side by Side Diff: LayoutTests/paint/overflow/fixed-children-should-not-scroll-expected.html

Issue 1110653003: [Reland] Correct fixed-position recording for Slimming Paint (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #fixed {
4 position: absolute;
5 left: 300px;
6 top: 200px;
7 width: 100px;
8 height: 100px;
9 background-color: green;
10 }
11
12 #fixed-child {
13 position: absolute;
14 left: 25px;
15 top: 25px;
16 width: 50px;
17 height: 50px;
18 background-color: blue;
19 }
20 </style>
21 <div id="fixed">
22 <div id="fixed-child"></div>
23 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698