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/compositing/contents-opaque/background-color-expected.txt

Issue 2608423002: Fix RGBA alpha parsing and serialization to adhere to W3 standard. (Closed)
Patch Set: rebaseline 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": "LayoutBlockFlow DIV class='box composited'", 10 "name": "LayoutBlockFlow DIV class='box composited'",
11 "position": [8, 8], 11 "position": [8, 8],
12 "bounds": [100, 100] 12 "bounds": [100, 100]
13 }, 13 },
14 { 14 {
15 "name": "LayoutBlockFlow DIV class='box translucent composited'", 15 "name": "LayoutBlockFlow DIV class='box translucent composited'",
16 "position": [8, 108], 16 "position": [8, 108],
17 "bounds": [100, 100], 17 "bounds": [100, 100],
18 "drawsContent": true, 18 "drawsContent": true,
19 "backgroundColor": "#00FF007F" 19 "backgroundColor": "#00FF0080"
20 }, 20 },
21 { 21 {
22 "name": "LayoutBlockFlow DIV class='box opaque composited'", 22 "name": "LayoutBlockFlow DIV class='box opaque composited'",
23 "position": [8, 208], 23 "position": [8, 208],
24 "bounds": [100, 100], 24 "bounds": [100, 100],
25 "contentsOpaque": true, 25 "contentsOpaque": true,
26 "drawsContent": true, 26 "drawsContent": true,
27 "backgroundColor": "#008000" 27 "backgroundColor": "#008000"
28 } 28 }
29 ] 29 ]
30 } 30 }
31 31
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698