Index: third_party/WebKit/Source/web/tests/WebViewTest.cpp |
diff --git a/third_party/WebKit/Source/web/tests/WebViewTest.cpp b/third_party/WebKit/Source/web/tests/WebViewTest.cpp |
index 1bf6e399b662dcadcf11434e50694f3b3f028622..23411154b592e0b47eb3130259ccc7dfbe0f712f 100644 |
--- a/third_party/WebKit/Source/web/tests/WebViewTest.cpp |
+++ b/third_party/WebKit/Source/web/tests/WebViewTest.cpp |
@@ -396,11 +396,11 @@ TEST_P(WebViewTest, SetBaseBackgroundColor) { |
"style></head></html>", |
baseURL); |
// Expected: red (50% alpha) blended atop base of kBlue. |
- EXPECT_EQ(0xFF7F0080, webView->backgroundColor()); |
+ EXPECT_EQ(0xFF80007F, webView->backgroundColor()); |
webView->setBaseBackgroundColor(kTranslucentPutty); |
// Expected: red (50% alpha) blended atop kTranslucentPutty. Note the alpha. |
- EXPECT_EQ(0xBFE93B32, webView->backgroundColor()); |
+ EXPECT_EQ(0xBFE93A31, webView->backgroundColor()); |
webView->setBaseBackgroundColor(kTransparent); |
FrameTestHelpers::loadHTMLString(webView->mainFrame(), |