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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/layer-creation/fixed-position-change-out-of-view-in-view-expected.txt

Issue 2591883002: Apply both phsical bounding box and clip to composited bounds. (Closed)
Patch Set: none Created 3 years, 11 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
1 Layer tree when the fixed elements are out-of-view (should have just a root laye r): 1 Layer tree when the fixed elements are out-of-view (should have just a root laye r):
2 { 2 {
3 "layers": [ 3 "layers": [
4 { 4 {
5 "name": "LayoutView #document", 5 "name": "LayoutView #document",
6 "bounds": [785, 4016], 6 "bounds": [785, 4016],
7 "contentsOpaque": true, 7 "contentsOpaque": true,
8 "drawsContent": true 8 "drawsContent": true
9 }, 9 },
10 { 10 {
11 "name": "LayoutBlockFlow (positioned) DIV id='fixed1'", 11 "name": "LayoutBlockFlow (positioned) DIV id='fixed1'",
12 "position": [100, -100], 12 "position": [100, -100],
13 "bounds": [10, 10], 13 "bounds": [10, 10],
14 "contentsOpaque": true, 14 "contentsOpaque": true,
15 "drawsContent": true, 15 "drawsContent": true,
16 "backgroundColor": "#C0C0C0" 16 "backgroundColor": "#C0C0C0"
17 }, 17 },
18 { 18 {
19 "name": "LayoutBlockFlow (positioned) DIV id='fixed2'", 19 "name": "LayoutBlockFlow (positioned) DIV id='fixed2'",
20 "position": [100, 100], 20 "position": [100, 100],
21 "bounds": [10, 0],
22 "contentsOpaque": true, 21 "contentsOpaque": true,
23 "drawsContent": true, 22 "drawsContent": true,
24 "backgroundColor": "#C0C0C0" 23 "backgroundColor": "#C0C0C0"
25 } 24 }
26 ] 25 ]
27 } 26 }
28 Layer tree when the fixed elements are in-view (both fixed elements should have layers): 27 Layer tree when the fixed elements are in-view (both fixed elements should have layers):
29 { 28 {
30 "layers": [ 29 "layers": [
31 { 30 {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 "name": "LayoutBlockFlow (positioned) DIV id='fixed1'", 64 "name": "LayoutBlockFlow (positioned) DIV id='fixed1'",
66 "position": [100, -100], 65 "position": [100, -100],
67 "bounds": [10, 10], 66 "bounds": [10, 10],
68 "contentsOpaque": true, 67 "contentsOpaque": true,
69 "drawsContent": true, 68 "drawsContent": true,
70 "backgroundColor": "#C0C0C0" 69 "backgroundColor": "#C0C0C0"
71 }, 70 },
72 { 71 {
73 "name": "LayoutBlockFlow (positioned) DIV id='fixed2'", 72 "name": "LayoutBlockFlow (positioned) DIV id='fixed2'",
74 "position": [100, 100], 73 "position": [100, 100],
75 "bounds": [10, 0],
76 "contentsOpaque": true, 74 "contentsOpaque": true,
77 "drawsContent": true, 75 "drawsContent": true,
78 "backgroundColor": "#C0C0C0" 76 "backgroundColor": "#C0C0C0"
79 } 77 }
80 ] 78 ]
81 } 79 }
82 80
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698