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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/repaint-composited-child-in-scrolled-container-expected.txt

Issue 2516303003: Revert of Only promote opaque scrollers which are stacking contexts. (Closed)
Patch Set: Created 4 years 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 { 1 {
2 "layers": [ 2 "layers": [
3 { 3 {
4 "name": "LayoutView #document", 4 "name": "LayoutView #document",
5 "bounds": [800, 600], 5 "bounds": [800, 600],
6 "contentsOpaque": true, 6 "contentsOpaque": true,
7 "drawsContent": true
8 },
9 {
10 "name": "LayoutBlockFlow (positioned) DIV id='outer'",
11 "position": [8, 8],
12 "bounds": [300, 300],
13 "shouldFlattenTransform": false,
7 "drawsContent": true, 14 "drawsContent": true,
15 "backgroundColor": "#0000FF"
16 },
17 {
18 "name": "Scrolling Layer",
19 "bounds": [285, 285],
20 "shouldFlattenTransform": false
21 },
22 {
23 "name": "Scrolling Contents Layer",
24 "bounds": [650, 600],
25 "contentsOpaque": true,
26 "drawsContent": true
27 },
28 {
29 "name": "Overflow Controls Host Layer",
30 "bounds": [300, 300]
31 },
32 {
33 "name": "Horizontal Scrollbar Layer",
34 "position": [0, 285],
35 "bounds": [285, 15],
8 "paintInvalidations": [ 36 "paintInvalidations": [
9 { 37 {
10 "object": "LayoutBlockFlow (positioned) DIV id='outer'", 38 "object": "Horizontal Scrollbar Layer",
11 "rect": [8, 293, 285, 15], 39 "rect": [0, 0, 285, 15],
12 "reason": "scroll" 40 "reason": "full"
13 } 41 }
14 ] 42 ]
15 }, 43 },
16 { 44 {
17 "name": "Ancestor Clipping Layer", 45 "name": "Vertical Scrollbar Layer",
18 "position": [8, 8], 46 "position": [285, 0],
19 "bounds": [285, 285], 47 "bounds": [15, 285]
20 "shouldFlattenTransform": false 48 },
49 {
50 "name": "Scroll Corner Layer",
51 "position": [285, 285],
52 "bounds": [15, 15],
53 "drawsContent": true
21 }, 54 },
22 { 55 {
23 "name": "LayoutBlockFlow (positioned) DIV id='container'", 56 "name": "LayoutBlockFlow (positioned) DIV id='container'",
24 "position": [-315, 0], 57 "position": [-307, 8],
25 "bounds": [600, 600], 58 "bounds": [600, 600],
26 "contentsOpaque": true, 59 "contentsOpaque": true,
27 "drawsContent": true, 60 "drawsContent": true,
28 "backgroundColor": "#FF0000", 61 "backgroundColor": "#FF0000",
29 "paintInvalidations": [ 62 "paintInvalidations": [
30 { 63 {
31 "object": "LayoutBlockFlow DIV id='inner'", 64 "object": "LayoutBlockFlow DIV id='inner'",
32 "rect": [0, 0, 600, 600], 65 "rect": [0, 0, 600, 600],
33 "reason": "style change" 66 "reason": "style change"
34 } 67 }
35 ] 68 ]
36 } 69 }
37 ], 70 ],
38 "objectPaintInvalidations": [ 71 "objectPaintInvalidations": [
39 { 72 {
40 "object": "HorizontalScrollbar",
41 "reason": "scroll"
42 },
43 {
44 "object": "LayoutBlockFlow DIV id='inner'", 73 "object": "LayoutBlockFlow DIV id='inner'",
45 "reason": "style change" 74 "reason": "style change"
46 } 75 }
47 ] 76 ]
48 } 77 }
49 78
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698