OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
(...skipping 3363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3374 if (!hasViewportUnits()) | 3374 if (!hasViewportUnits()) |
3375 return; | 3375 return; |
3376 ensureStyleResolver().notifyResizeForViewportUnits(); | 3376 ensureStyleResolver().notifyResizeForViewportUnits(); |
3377 setNeedsStyleRecalcForViewportUnits(); | 3377 setNeedsStyleRecalcForViewportUnits(); |
3378 } | 3378 } |
3379 | 3379 |
3380 void Document::styleResolverChanged(StyleResolverUpdateMode updateMode) | 3380 void Document::styleResolverChanged(StyleResolverUpdateMode updateMode) |
3381 { | 3381 { |
3382 styleEngine().resolverChanged(updateMode); | 3382 styleEngine().resolverChanged(updateMode); |
3383 | 3383 |
3384 if (m_pendingSheetLayout == DidLayoutWithPendingSheets && !styleEngine().has
PendingSheets()) | 3384 if (didLayoutWithPendingStylesheets() && !styleEngine().hasPendingSheets())
{ |
| 3385 // We need to manually repaint because we avoid doing all repaints in la
yout or style |
| 3386 // recalc while sheets are still loading to avoid FOUC. |
3385 m_pendingSheetLayout = IgnoreLayoutWithPendingSheets; | 3387 m_pendingSheetLayout = IgnoreLayoutWithPendingSheets; |
| 3388 |
| 3389 ASSERT(layoutView() || importsController()); |
| 3390 if (layoutView()) |
| 3391 layoutView()->invalidatePaintForViewAndCompositedLayers(); |
| 3392 } |
3386 } | 3393 } |
3387 | 3394 |
3388 void Document::styleResolverMayHaveChanged() | 3395 void Document::styleResolverMayHaveChanged() |
3389 { | 3396 { |
3390 styleResolverChanged(hasNodesWithPlaceholderStyle() ? FullStyleUpdate : Anal
yzedStyleUpdate); | 3397 styleResolverChanged(hasNodesWithPlaceholderStyle() ? FullStyleUpdate : Anal
yzedStyleUpdate); |
3391 } | 3398 } |
3392 | 3399 |
3393 void Document::setHoverNode(PassRefPtrWillBeRawPtr<Node> newHoverNode) | 3400 void Document::setHoverNode(PassRefPtrWillBeRawPtr<Node> newHoverNode) |
3394 { | 3401 { |
3395 m_hoverNode = newHoverNode; | 3402 m_hoverNode = newHoverNode; |
(...skipping 2369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5765 #ifndef NDEBUG | 5772 #ifndef NDEBUG |
5766 using namespace blink; | 5773 using namespace blink; |
5767 void showLiveDocumentInstances() | 5774 void showLiveDocumentInstances() |
5768 { | 5775 { |
5769 Document::WeakDocumentSet& set = Document::liveDocumentSet(); | 5776 Document::WeakDocumentSet& set = Document::liveDocumentSet(); |
5770 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5777 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
5771 for (Document* document : set) | 5778 for (Document* document : set) |
5772 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); | 5779 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); |
5773 } | 5780 } |
5774 #endif | 5781 #endif |
OLD | NEW |