OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
3 * 1999 Lars Knoll <knoll@kde.org> | 3 * 1999 Lars Knoll <knoll@kde.org> |
4 * 1999 Antti Koivisto <koivisto@kde.org> | 4 * 1999 Antti Koivisto <koivisto@kde.org> |
5 * 2000 Dirk Mueller <mueller@kde.org> | 5 * 2000 Dirk Mueller <mueller@kde.org> |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
9 * Copyright (C) 2009 Google Inc. All rights reserved. | 9 * Copyright (C) 2009 Google Inc. All rights reserved. |
10 * | 10 * |
(...skipping 3017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3028 child = child->tree().nextSibling()) { | 3028 child = child->tree().nextSibling()) { |
3029 if (!child->isLocalFrame()) | 3029 if (!child->isLocalFrame()) |
3030 continue; | 3030 continue; |
3031 if (FrameView* view = toLocalFrame(child)->view()) | 3031 if (FrameView* view = toLocalFrame(child)->view()) |
3032 frameViews.append(view); | 3032 frameViews.append(view); |
3033 } | 3033 } |
3034 | 3034 |
3035 for (const auto& frameView : frameViews) | 3035 for (const auto& frameView : frameViews) |
3036 frameView->updateStyleAndLayoutIfNeededRecursiveInternal(); | 3036 frameView->updateStyleAndLayoutIfNeededRecursiveInternal(); |
3037 | 3037 |
| 3038 checkDoesNotNeedLayout(); |
| 3039 |
| 3040 // When SVG filters are invalidated using |
| 3041 // Document::scheduleSVGFilterLayerUpdateHack() they may trigger an extra |
| 3042 // style recalc. See PaintLayer::filterNeedsPaintInvalidation(). |
| 3043 if (m_frame->document()->hasSVGFilterElementsRequiringLayerUpdate()) { |
| 3044 m_frame->document()->updateStyleAndLayoutTree(); |
| 3045 |
| 3046 if (needsLayout()) |
| 3047 layout(); |
| 3048 } |
| 3049 |
3038 // These asserts ensure that parent frames are clean, when child frames | 3050 // These asserts ensure that parent frames are clean, when child frames |
3039 // finished updating layout and style. | 3051 // finished updating layout and style. |
3040 checkDoesNotNeedLayout(); | 3052 checkDoesNotNeedLayout(); |
| 3053 ASSERT(!m_frame->document()->hasSVGFilterElementsRequiringLayerUpdate()); |
3041 #if ENABLE(ASSERT) | 3054 #if ENABLE(ASSERT) |
3042 m_frame->document()->layoutView()->assertLaidOut(); | 3055 m_frame->document()->layoutView()->assertLaidOut(); |
3043 #endif | 3056 #endif |
3044 | 3057 |
3045 updateWidgetGeometriesIfNeeded(); | 3058 updateWidgetGeometriesIfNeeded(); |
3046 | 3059 |
3047 if (lifecycle().state() < DocumentLifecycle::LayoutClean) | 3060 if (lifecycle().state() < DocumentLifecycle::LayoutClean) |
3048 lifecycle().advanceTo(DocumentLifecycle::LayoutClean); | 3061 lifecycle().advanceTo(DocumentLifecycle::LayoutClean); |
3049 | 3062 |
3050 // Ensure that we become visually non-empty eventually. | 3063 // Ensure that we become visually non-empty eventually. |
(...skipping 1484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4535 DCHECK(m_frame->isMainFrame()); | 4548 DCHECK(m_frame->isMainFrame()); |
4536 return m_initialViewportSize.width(); | 4549 return m_initialViewportSize.width(); |
4537 } | 4550 } |
4538 | 4551 |
4539 int FrameView::initialViewportHeight() const { | 4552 int FrameView::initialViewportHeight() const { |
4540 DCHECK(m_frame->isMainFrame()); | 4553 DCHECK(m_frame->isMainFrame()); |
4541 return m_initialViewportSize.height(); | 4554 return m_initialViewportSize.height(); |
4542 } | 4555 } |
4543 | 4556 |
4544 } // namespace blink | 4557 } // namespace blink |
OLD | NEW |