Index: Source/core/dom/Document.h |
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h |
index 74143db3fe6a0076d3e4cdd2fb4e2be728e7c50c..1657d701efb4c4a9d4a97f8b4022980c728013d3 100644 |
--- a/Source/core/dom/Document.h |
+++ b/Source/core/dom/Document.h |
@@ -851,6 +851,7 @@ public: |
enum PendingSheetLayout { NoLayoutWithPendingSheets, DidLayoutWithPendingSheets, IgnoreLayoutWithPendingSheets }; |
bool didLayoutWithPendingStylesheets() const { return m_pendingSheetLayout == DidLayoutWithPendingSheets; } |
+ bool ignoreLayoutWithPendingStylesheets() const { return m_pendingSheetLayout == IgnoreLayoutWithPendingSheets; } |
bool hasNodesWithPlaceholderStyle() const { return m_hasNodesWithPlaceholderStyle; } |
void setHasNodesWithPlaceholderStyle() { m_hasNodesWithPlaceholderStyle = true; } |