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 1841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1852 documentElement->recalcStyle(change); | 1852 documentElement->recalcStyle(change); |
1853 while (dirtyElementsForLayerUpdate()) | 1853 while (dirtyElementsForLayerUpdate()) |
1854 documentElement->recalcStyle(NoChange); | 1854 documentElement->recalcStyle(NoChange); |
1855 } | 1855 } |
1856 | 1856 |
1857 view()->recalcOverflowAfterStyleChange(); | 1857 view()->recalcOverflowAfterStyleChange(); |
1858 view()->setFrameTimingRequestsDirty(true); | 1858 view()->setFrameTimingRequestsDirty(true); |
1859 | 1859 |
1860 clearChildNeedsStyleRecalc(); | 1860 clearChildNeedsStyleRecalc(); |
1861 | 1861 |
1862 // Pseudo element removal and similar may only work with these flags still s
et. Reset them after the style recalc. | |
1863 styleEngine().resetCSSFeatureFlags(resolver.ensureUpdatedRuleFeatureSet()); | |
1864 resolver.clearStyleSharingList(); | 1862 resolver.clearStyleSharingList(); |
1865 | 1863 |
1866 m_wasPrinting = m_printing; | 1864 m_wasPrinting = m_printing; |
1867 | 1865 |
1868 ASSERT(!needsStyleRecalc()); | 1866 ASSERT(!needsStyleRecalc()); |
1869 ASSERT(!childNeedsStyleRecalc()); | 1867 ASSERT(!childNeedsStyleRecalc()); |
1870 ASSERT(inStyleRecalc()); | 1868 ASSERT(inStyleRecalc()); |
1871 ASSERT(styleResolver() == &resolver); | 1869 ASSERT(styleResolver() == &resolver); |
1872 m_lifecycle.advanceTo(DocumentLifecycle::StyleClean); | 1870 m_lifecycle.advanceTo(DocumentLifecycle::StyleClean); |
1873 if (shouldRecordStats) { | 1871 if (shouldRecordStats) { |
(...skipping 4121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5995 #ifndef NDEBUG | 5993 #ifndef NDEBUG |
5996 using namespace blink; | 5994 using namespace blink; |
5997 void showLiveDocumentInstances() | 5995 void showLiveDocumentInstances() |
5998 { | 5996 { |
5999 Document::WeakDocumentSet& set = Document::liveDocumentSet(); | 5997 Document::WeakDocumentSet& set = Document::liveDocumentSet(); |
6000 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5998 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
6001 for (Document* document : set) | 5999 for (Document* document : set) |
6002 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); | 6000 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); |
6003 } | 6001 } |
6004 #endif | 6002 #endif |
OLD | NEW |