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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/update-paint-phases-expected.txt

Issue 2439113003: Fix the bug that negative outline-offset is covered up by composited (Closed)
Patch Set: Rename decorationLayer to decorationOutlineLayer Created 4 years, 1 month 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 "paintingPhases": [ 8 "paintingPhases": [
9 "GraphicsLayerPaintBackground", 9 "GraphicsLayerPaintBackground",
10 "GraphicsLayerPaintForeground", 10 "GraphicsLayerPaintForeground",
11 "GraphicsLayerPaintMask" 11 "GraphicsLayerPaintMask",
12 "GraphicsLayerPaintDecoration"
12 ] 13 ]
13 }, 14 },
14 { 15 {
15 "name": "LayoutBlockFlow DIV class='scroller'", 16 "name": "LayoutBlockFlow DIV class='scroller'",
16 "position": [8, 8], 17 "position": [8, 8],
17 "bounds": [102, 102], 18 "bounds": [102, 102],
18 "shouldFlattenTransform": false, 19 "shouldFlattenTransform": false,
19 "drawsContent": true, 20 "drawsContent": true,
20 "paintingPhases": [ 21 "paintingPhases": [
21 "GraphicsLayerPaintBackground", 22 "GraphicsLayerPaintBackground",
22 "GraphicsLayerPaintMask", 23 "GraphicsLayerPaintMask",
23 "GraphicsLayerPaintCompositedScroll" 24 "GraphicsLayerPaintCompositedScroll",
25 "GraphicsLayerPaintDecoration"
24 ] 26 ]
25 }, 27 },
26 { 28 {
27 "name": "Scrolling Layer", 29 "name": "Scrolling Layer",
28 "position": [1, 1], 30 "position": [1, 1],
29 "bounds": [85, 85], 31 "bounds": [85, 85],
30 "shouldFlattenTransform": false, 32 "shouldFlattenTransform": false,
31 "paintingPhases": [ 33 "paintingPhases": [
32 "GraphicsLayerPaintBackground", 34 "GraphicsLayerPaintBackground",
33 "GraphicsLayerPaintForeground", 35 "GraphicsLayerPaintForeground",
34 "GraphicsLayerPaintMask" 36 "GraphicsLayerPaintMask",
37 "GraphicsLayerPaintDecoration"
35 ] 38 ]
36 }, 39 },
37 { 40 {
38 "name": "Scrolling Contents Layer", 41 "name": "Scrolling Contents Layer",
39 "bounds": [85, 120], 42 "bounds": [85, 120],
40 "drawsContent": true, 43 "drawsContent": true,
41 "paintingPhases": [ 44 "paintingPhases": [
42 "GraphicsLayerPaintForeground", 45 "GraphicsLayerPaintForeground",
43 "GraphicsLayerPaintOverflowContents", 46 "GraphicsLayerPaintOverflowContents",
44 "GraphicsLayerPaintCompositedScroll" 47 "GraphicsLayerPaintCompositedScroll"
45 ] 48 ]
46 }, 49 },
47 { 50 {
48 "name": "Overflow Controls Host Layer", 51 "name": "Overflow Controls Host Layer",
49 "bounds": [102, 102], 52 "bounds": [102, 102],
50 "paintingPhases": [ 53 "paintingPhases": [
51 "GraphicsLayerPaintBackground", 54 "GraphicsLayerPaintBackground",
52 "GraphicsLayerPaintForeground", 55 "GraphicsLayerPaintForeground",
53 "GraphicsLayerPaintMask" 56 "GraphicsLayerPaintMask",
57 "GraphicsLayerPaintDecoration"
54 ] 58 ]
55 }, 59 },
56 { 60 {
57 "name": "Horizontal Scrollbar Layer", 61 "name": "Horizontal Scrollbar Layer",
58 "position": [1, 86], 62 "position": [1, 86],
59 "bounds": [85, 15], 63 "bounds": [85, 15],
60 "paintingPhases": [ 64 "paintingPhases": [
61 "GraphicsLayerPaintBackground", 65 "GraphicsLayerPaintBackground",
62 "GraphicsLayerPaintForeground", 66 "GraphicsLayerPaintForeground",
63 "GraphicsLayerPaintMask" 67 "GraphicsLayerPaintMask",
68 "GraphicsLayerPaintDecoration"
64 ] 69 ]
65 }, 70 },
66 { 71 {
67 "name": "Vertical Scrollbar Layer", 72 "name": "Vertical Scrollbar Layer",
68 "position": [86, 1], 73 "position": [86, 1],
69 "bounds": [15, 85], 74 "bounds": [15, 85],
70 "paintingPhases": [ 75 "paintingPhases": [
71 "GraphicsLayerPaintBackground", 76 "GraphicsLayerPaintBackground",
72 "GraphicsLayerPaintForeground", 77 "GraphicsLayerPaintForeground",
73 "GraphicsLayerPaintMask" 78 "GraphicsLayerPaintMask",
79 "GraphicsLayerPaintDecoration"
74 ] 80 ]
75 }, 81 },
76 { 82 {
77 "name": "Scroll Corner Layer", 83 "name": "Scroll Corner Layer",
78 "position": [86, 86], 84 "position": [86, 86],
79 "bounds": [15, 15], 85 "bounds": [15, 15],
80 "drawsContent": true, 86 "drawsContent": true,
81 "paintingPhases": [ 87 "paintingPhases": [
82 "GraphicsLayerPaintBackground", 88 "GraphicsLayerPaintBackground",
83 "GraphicsLayerPaintForeground", 89 "GraphicsLayerPaintForeground",
84 "GraphicsLayerPaintMask" 90 "GraphicsLayerPaintMask",
91 "GraphicsLayerPaintDecoration"
85 ] 92 ]
86 } 93 }
87 ] 94 ]
88 } 95 }
89 96
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698