diff --git content/browser/renderer_host/render_view_host_impl.cc content/browser/renderer_host/render_view_host_impl.cc index 914e4cdd97154..13d3a939ba731 100644 --- content/browser/renderer_host/render_view_host_impl.cc +++ content/browser/renderer_host/render_view_host_impl.cc @@ -713,6 +713,8 @@ bool RenderViewHostImpl::IsRenderViewLive() const { } void RenderViewHostImpl::SetBackgroundOpaque(bool opaque) { + if (!GetWidget()->GetAssociatedFrameWidget().is_bound()) + return; GetWidget()->GetAssociatedFrameWidget()->SetBackgroundOpaque(opaque); }