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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-background-colors-expected.txt

Issue 2608423002: Fix RGBA alpha parsing and serialization to adhere to W3 standard. (Closed)
Patch Set: NeedsRebaseline for failed layout tests 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-background-colors-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-background-colors-expected.txt b/third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-background-colors-expected.txt
index 83cd3146be5e6226434ea13073a5e66ca7868e18..93abefe16c30259094538bf45e0a4f90f6331f83 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-background-colors-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-background-colors-expected.txt
@@ -42,11 +42,11 @@ Opaque background color in front of another opaque background color: should be b
Running test: testOneSemitransparentBgColor
Semi-transparent background color: should be light red
-{"backgroundColors":["rgb(255, 128, 128)"]}
+{"backgroundColors":["rgb(255, 127, 127)"]}
Running test: testTwoSemitransparentBgColors
Two layered semi-transparent background colors: should be medium red
-{"backgroundColors":["rgb(255, 64, 64)"]}
+{"backgroundColors":["rgb(255, 63, 63)"]}
Running test: testOpaqueGradientBackground
Opaque gradient: should be red and black
@@ -54,7 +54,7 @@ Opaque gradient: should be red and black
Running test: testOpaqueGradientBackgroundBehindScrim
Opaque gradient behind semi-transparent color: should be light red and 50% grey
-{"backgroundColors":["rgb(255, 127, 127)","rgb(127, 127, 127)"]}
+{"backgroundColors":["rgb(255, 128, 128)","rgb(128, 128, 128)"]}
Running test: testOpaqueGradientBackgroundWithColorBackground
Opaque gradient and solid color background on same element: should be red and black
@@ -62,11 +62,11 @@ Opaque gradient and solid color background on same element: should be red and bl
Running test: testPartiallyTransparentGradientBackground
Semi-transparent gradient: should be light red and 50% grey
-{"backgroundColors":["rgb(255, 128, 128)","rgb(128, 128, 128)"]}
+{"backgroundColors":["rgb(255, 127, 127)","rgb(127, 127, 127)"]}
Running test: testPartiallyTransparentGradientAndColorBackground
Semi-transparent gradient and solid color on same element: should be dark red and 50% grey
-{"backgroundColors":["rgb(127, 0, 0)","rgb(127, 127, 127)"]}
+{"backgroundColors":["rgb(128, 0, 0)","rgb(128, 128, 128)"]}
Running test: testTwoPartiallyTransparentGradientBackgrounds
Layered semi-transparent gradients: should be empty array
@@ -94,7 +94,7 @@ Background image with background color: should be empty array
Running test: testBackgroundImageBehindScrim
Background image behind scrim: should be semi-transparent white
-{"backgroundColors":["rgba(255, 255, 255, 0.498039)"]}
+{"backgroundColors":["rgba(255, 255, 255, 0.5)"]}
Running test: testForegroundImage
Image behind text: should be empty array
@@ -102,7 +102,7 @@ Image behind text: should be empty array
Running test: testForegroundImageBehindScrim
Image behind scrim: should be semi-transparent white
-{"backgroundColors":["rgba(255, 255, 255, 0.498039)"]}
+{"backgroundColors":["rgba(255, 255, 255, 0.5)"]}
Running test: testForegroundCanvas
Canvas behind text: should be empty array

Powered by Google App Engine
This is Rietveld 408576698