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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/borders/overflow-hidden-border-radius-force-backing-store-expected.txt

Issue 2923683002: Fix nested border radius with composited child. (Closed)
Patch Set: Split tests, check layer sizes, document Created 3 years, 6 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 { 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 7 "drawsContent": true
8 }, 8 },
9 { 9 {
10 "name": "LayoutBlockFlow (positioned) DIV id='outer'", 10 "name": "LayoutBlockFlow (positioned) DIV id='outer'",
11 "position": [50, 50], 11 "position": [50, 50],
12 "bounds": [300, 300], 12 "bounds": [300, 300],
13 "drawsContent": true 13 "drawsContent": true
14 }, 14 },
15 { 15 {
16 "name": "Child Containment Layer", 16 "name": "Child Containment Layer",
17 "bounds": [300, 300], 17 "bounds": [300, 300],
18 "maskLayer": [ 18 "maskLayer": [
19 { 19 {
20 "name": "Child Clipping Mask Layer", 20 "name": "Child Clipping Mask Layer",
21 "bounds": [300, 300], 21 "bounds": [300, 300],
22 "drawsContent": true 22 "drawsContent": true
23 } 23 }
24 ] 24 ]
25 }, 25 },
26 { 26 {
27 "name": "Ancestor Clipping Layer", 27 "name": "Ancestor Clipping Layer",
28 "bounds": [285, 300], 28 "bounds": [285, 300],
29 "shouldFlattenTransform": false 29 "shouldFlattenTransform": false,
30 "maskLayer": [
31 {
32 "name": "Ancestor Clipping Mask Layer",
33 "bounds": [285, 300],
34 "drawsContent": true
35 }
36 ]
30 }, 37 },
31 { 38 {
32 "name": "LayoutBlockFlow DIV id='content'", 39 "name": "LayoutBlockFlow DIV id='content'",
33 "bounds": [285, 1000], 40 "bounds": [285, 1000],
34 "contentsOpaque": true, 41 "contentsOpaque": true,
35 "drawsContent": true 42 "drawsContent": true
36 } 43 }
37 ] 44 ]
38 } 45 }
39 46
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698