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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/draws-content/canvas-background-layer-expected.txt

Issue 2608423002: Fix RGBA alpha parsing and serialization to adhere to W3 standard. (Closed)
Patch Set: Rebaseline expectations for win and mac Created 3 years, 11 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": "LayoutHTMLCanvas CANVAS id='canvas-simple'", 10 "name": "LayoutHTMLCanvas CANVAS id='canvas-simple'",
11 "position": [13, 8], 11 "position": [13, 8],
12 "bounds": [50, 50], 12 "bounds": [50, 50],
13 "contentsOpaque": true, 13 "contentsOpaque": true,
14 "drawsContent": true, 14 "drawsContent": true,
15 "backgroundColor": "#008000" 15 "backgroundColor": "#008000"
16 }, 16 },
17 { 17 {
18 "name": "LayoutHTMLCanvas CANVAS id='canvas-transparent-background'", 18 "name": "LayoutHTMLCanvas CANVAS id='canvas-transparent-background'",
19 "position": [13, 73], 19 "position": [13, 73],
20 "bounds": [50, 50], 20 "bounds": [50, 50],
21 "drawsContent": true, 21 "drawsContent": true,
22 "backgroundColor": "#00FF007F" 22 "backgroundColor": "#00FF0080"
23 }, 23 },
24 { 24 {
25 "name": "LayoutHTMLCanvas CANVAS id='canvas-padding'", 25 "name": "LayoutHTMLCanvas CANVAS id='canvas-padding'",
26 "position": [13, 138], 26 "position": [13, 138],
27 "bounds": [60, 60], 27 "bounds": [60, 60],
28 "drawsContent": true, 28 "drawsContent": true,
29 "backgroundColor": "#008000" 29 "backgroundColor": "#008000"
30 }, 30 },
31 { 31 {
32 "name": "LayoutHTMLCanvas CANVAS id='canvas-border'", 32 "name": "LayoutHTMLCanvas CANVAS id='canvas-border'",
(...skipping 13 matching lines...) Expand all
46 "name": "LayoutHTMLCanvas CANVAS id='canvas-opaque'", 46 "name": "LayoutHTMLCanvas CANVAS id='canvas-opaque'",
47 "position": [13, 333], 47 "position": [13, 333],
48 "bounds": [60, 60], 48 "bounds": [60, 60],
49 "contentsOpaque": true, 49 "contentsOpaque": true,
50 "drawsContent": true, 50 "drawsContent": true,
51 "backgroundColor": "#008000" 51 "backgroundColor": "#008000"
52 } 52 }
53 ] 53 ]
54 } 54 }
55 55
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698