| Index: Source/core/frame/FrameView.cpp
|
| diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
|
| index 790532e1c83eeda15c0d20373b9c3ff6063eddcf..28bb89269200b9136a642715d58b97a43150506f 100644
|
| --- a/Source/core/frame/FrameView.cpp
|
| +++ b/Source/core/frame/FrameView.cpp
|
| @@ -115,7 +115,7 @@ FrameView::FrameView(LocalFrame* frame)
|
| , m_postLayoutTasksTimer(this, &FrameView::postLayoutTimerFired)
|
| , m_updateWidgetsTimer(this, &FrameView::updateWidgetsTimerFired)
|
| , m_isTransparent(false)
|
| - , m_baseBackgroundColor(Color::white)
|
| + , m_baseBackgroundColor(Color::gray)
|
| , m_mediaType("screen")
|
| , m_overflowStatusDirty(true)
|
| , m_viewportRenderer(0)
|
| @@ -1737,7 +1737,7 @@ HostWindow* FrameView::hostWindow() const
|
| void FrameView::contentRectangleForPaintInvalidation(const IntRect& r)
|
| {
|
| ASSERT(paintInvalidationIsAllowed());
|
| - ASSERT(!m_frame->owner());
|
| + //ASSERT(!m_frame->owner());
|
|
|
| if (m_isTrackingPaintInvalidations) {
|
| IntRect paintInvalidationRect = r;
|
| @@ -1907,8 +1907,11 @@ bool FrameView::needsLayout() const
|
|
|
| void FrameView::setNeedsLayout()
|
| {
|
| - if (RenderView* renderView = this->renderView())
|
| + printf("FrameView::setNeedsLayout\n");
|
| + if (RenderView* renderView = this->renderView()) {
|
| + printf("FrameView::setNeedsLayout: call renderView\n");
|
| renderView->setNeedsLayout();
|
| + }
|
| }
|
|
|
| bool FrameView::isTransparent() const
|
|
|