Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(692)

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 1743183003: Remove unnecessary feature flag update. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/StyleEngine.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/StyleEngine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698