| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index eb62136621830b09e8de27f34255fa9731f9dfa7..b432f26338ee46e2ffac734026e1f4355bf06b07 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -1666,8 +1666,9 @@ void WebLocalFrameImpl::createFrameView()
|
|
|
| bool isMainFrame = !parent();
|
| IntSize initialSize = (isMainFrame || !frameWidget()) ? webView->mainFrameSize() : (IntSize)frameWidget()->size();
|
| + bool isTransparent = !isMainFrame && parent()->isWebRemoteFrame() ? true : webView->isTransparent();
|
|
|
| - frame()->createView(initialSize, webView->baseBackgroundColor(), webView->isTransparent());
|
| + frame()->createView(initialSize, webView->baseBackgroundColor(), isTransparent);
|
| if (webView->shouldAutoResize() && frame()->isLocalRoot())
|
| frame()->view()->enableAutoSizeMode(webView->minAutoSize(), webView->maxAutoSize());
|
|
|
|
|