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

Side by Side Diff: Source/core/dom/Document.h

Issue 339573005: Wrong pending sheets test causing FOUC. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added test Created 6 years, 6 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 | Annotate | Revision Log
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, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 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) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after
844 844
845 void setTransformSource(PassOwnPtr<TransformSource>); 845 void setTransformSource(PassOwnPtr<TransformSource>);
846 TransformSource* transformSource() const { return m_transformSource.get(); } 846 TransformSource* transformSource() const { return m_transformSource.get(); }
847 847
848 void incDOMTreeVersion() { ASSERT(m_lifecycle.stateAllowsTreeMutations()); m _domTreeVersion = ++s_globalTreeVersion; } 848 void incDOMTreeVersion() { ASSERT(m_lifecycle.stateAllowsTreeMutations()); m _domTreeVersion = ++s_globalTreeVersion; }
849 uint64_t domTreeVersion() const { return m_domTreeVersion; } 849 uint64_t domTreeVersion() const { return m_domTreeVersion; }
850 850
851 enum PendingSheetLayout { NoLayoutWithPendingSheets, DidLayoutWithPendingShe ets, IgnoreLayoutWithPendingSheets }; 851 enum PendingSheetLayout { NoLayoutWithPendingSheets, DidLayoutWithPendingShe ets, IgnoreLayoutWithPendingSheets };
852 852
853 bool didLayoutWithPendingStylesheets() const { return m_pendingSheetLayout = = DidLayoutWithPendingSheets; } 853 bool didLayoutWithPendingStylesheets() const { return m_pendingSheetLayout = = DidLayoutWithPendingSheets; }
854 bool ignoreLayoutWithPendingStylesheets() const { return m_pendingSheetLayou t == IgnoreLayoutWithPendingSheets; }
854 855
855 bool hasNodesWithPlaceholderStyle() const { return m_hasNodesWithPlaceholder Style; } 856 bool hasNodesWithPlaceholderStyle() const { return m_hasNodesWithPlaceholder Style; }
856 void setHasNodesWithPlaceholderStyle() { m_hasNodesWithPlaceholderStyle = tr ue; } 857 void setHasNodesWithPlaceholderStyle() { m_hasNodesWithPlaceholderStyle = tr ue; }
857 858
858 Vector<IconURL> iconURLs(int iconTypesMask); 859 Vector<IconURL> iconURLs(int iconTypesMask);
859 860
860 // Returns the HTMLLinkElement currently in use for the Web Manifest. 861 // Returns the HTMLLinkElement currently in use for the Web Manifest.
861 // Returns null if there is no such element. 862 // Returns null if there is no such element.
862 HTMLLinkElement* linkManifest() const; 863 HTMLLinkElement* linkManifest() const;
863 864
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
1459 inline bool Node::isDocumentNode() const 1460 inline bool Node::isDocumentNode() const
1460 { 1461 {
1461 return this == document(); 1462 return this == document();
1462 } 1463 }
1463 1464
1464 Node* eventTargetNodeForDocument(Document*); 1465 Node* eventTargetNodeForDocument(Document*);
1465 1466
1466 } // namespace WebCore 1467 } // namespace WebCore
1467 1468
1468 #endif // Document_h 1469 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698