| 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 9e68ace225ac574b9e4e33572761c1f5620e7f9b..33bd0bc7aa0d6db3c6cbddd4acede3c847b3800e 100644
|
| --- a/third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| @@ -435,12 +435,12 @@ TEST_P(WebViewTest, SetBaseBackgroundColor) {
|
| frame->document()->shutdown();
|
|
|
| // Creating a new frame view with the background color having 0 alpha.
|
| - frame->createView(IntSize(1024, 768), Color::transparent, true);
|
| + frame->createView(IntSize(1024, 768), Color::transparent);
|
| EXPECT_EQ(kTransparent, frame->view()->baseBackgroundColor());
|
| frame->view()->dispose();
|
|
|
| const Color transparentRed(100, 0, 0, 0);
|
| - frame->createView(IntSize(1024, 768), transparentRed, true);
|
| + frame->createView(IntSize(1024, 768), transparentRed);
|
| EXPECT_EQ(transparentRed, frame->view()->baseBackgroundColor());
|
| frame->view()->dispose();
|
| }
|
|
|