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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/overflow/non-composited-fixed-position-descendant.html

Issue 2521033003: Reland: Don't early out recursion into PaintLayerChildren when computing composited bounds. (Closed)
Patch Set: none Created 4 years, 1 month 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 <div id="parent">
2 <div id="fixed">
3 </div>
4 </div>
5 <!-- 'fixed' should overflow the bounds of 'parent', because 'parent' is not
6 the containing block for 'fixed' -->
7 <style>
8 #parent {
9 position: absolute;
10 z-index: 0;
11 overflow: auto;
12 background: lightgray;
13 width: 150px;
14 height: 150px;
15 backface-visibility: hidden;
16 }
17
18 #fixed {
19 position: fixed;
20 top: 30px;
21 left: 30px;
22 height: 200px;
23 width: 200px;
24 background: lightblue;
25 }
26 </style>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698