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

Side by Side Diff: LayoutTests/compositing/change-from-paints-into-ancestor-to-paints-into-own-backing-for-intrinsic-reason-expected.txt

Issue 512293002: Fix paint invalidation when composited layers change from paints-into-ancestor to self-painting. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix test. Created 6 years, 3 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
1 { 1 {
2 "bounds": [800, 600], 2 "bounds": [800, 600],
3 "children": [ 3 "children": [
4 { 4 {
5 "bounds": [800, 600], 5 "bounds": [800, 600],
6 "contentsOpaque": true, 6 "contentsOpaque": true,
7 "drawsContent": true, 7 "drawsContent": true,
8 "repaintRects": [
9 [8, 8, 784, 100]
10 ],
8 "children": [ 11 "children": [
9 { 12 {
10 "position": [8, 8], 13 "position": [8, 8],
14 "bounds": [784, 100],
15 "opacity": 0,
16 "contentsOpaque": true,
17 "drawsContent": true,
18 "backgroundColor": "#FF0000",
19 "repaintRects": [
20 [0, 0, 784, 100],
21 [0, 0, 784, 100]
22 ],
11 "children": [ 23 "children": [
12 { 24 {
25 "bounds": [784, 100],
13 "shouldFlattenTransform": false, 26 "shouldFlattenTransform": false,
14 "transform": [ 27 "transform": [
15 [1, 0, 0, 0], 28 [1, 0, 0, 0],
16 [0, 1, 0, 0], 29 [0, 1, 0, 0],
17 [0, 0, 1, -0.001], 30 [0, 0, 1, -1],
18 [0, 0, 0, 1] 31 [0, 0, 0, 1]
19 ], 32 ],
20 "children": [ 33 "children": [
21 { 34 {
22 "bounds": [200, 200], 35 "bounds": [100, 100],
23 "contentsOpaque": true, 36 "contentsOpaque": true,
24 "drawsContent": true, 37 "drawsContent": true,
25 "backgroundColor": "#00008B", 38 "backfaceVisibility": "hidden",
26 "transform": [ 39 "backgroundColor": "#0000FF"
27 [1, 0, 0, 0],
28 [0, 1, 0, 0],
29 [0, 0, 1, 0],
30 [0, 74, 200, 1]
31 ]
32 } 40 }
33 ] 41 ]
34 } 42 }
35 ] 43 ]
36 },
37 {
38 "position": [8, 8]
39 } 44 }
40 ] 45 ]
41 } 46 }
42 ] 47 ]
43 } 48 }
44 49
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698