OLD | NEW |
1 A squashing RenderLayer that becomes non-composited should correctly send a repa
int invalidation to the new container GraphicsLayer that it paints into. When ru
n interactively, hovering over the force-composited gray div should not cause ot
her layers to disappear. | 1 A squashing Layer that becomes non-composited should correctly send a repaint in
validation to the new container GraphicsLayer that it paints into. When run inte
ractively, hovering over the force-composited gray div should not cause other la
yers to disappear. |
2 | 2 |
3 CASE 1, original layer tree: | 3 CASE 1, original layer tree: |
4 { | 4 { |
5 "bounds": [800, 600], | 5 "bounds": [800, 600], |
6 "children": [ | 6 "children": [ |
7 { | 7 { |
8 "bounds": [800, 600], | 8 "bounds": [800, 600], |
9 "contentsOpaque": true, | 9 "contentsOpaque": true, |
10 "drawsContent": true, | 10 "drawsContent": true, |
11 "children": [ | 11 "children": [ |
(...skipping 29 matching lines...) Expand all Loading... |
41 "repaintRects": [ | 41 "repaintRects": [ |
42 [300, 300, 100, 100], | 42 [300, 300, 100, 100], |
43 [220, 220, 100, 100], | 43 [220, 220, 100, 100], |
44 [140, 140, 100, 100], | 44 [140, 140, 100, 100], |
45 [60, 60, 100, 100] | 45 [60, 60, 100, 100] |
46 ] | 46 ] |
47 } | 47 } |
48 ] | 48 ] |
49 } | 49 } |
50 | 50 |
OLD | NEW |