Index: third_party/WebKit/Source/core/dom/Document.h |
diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h |
index 673206c4cc4040c56dd7120d4880aa66d1d1bdbe..6130657ab028133c2084606d5efef777aebb85a2 100644 |
--- a/third_party/WebKit/Source/core/dom/Document.h |
+++ b/third_party/WebKit/Source/core/dom/Document.h |
@@ -374,7 +374,7 @@ public: |
bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNamespaces; } |
bool isRenderingReady() const { return haveImportsLoaded() && haveRenderBlockingStylesheetsLoaded(); } |
- bool isScriptExecutionReady() const { return haveImportsLoaded() && haveStylesheetsLoaded(); } |
+ bool isScriptExecutionReady() const { return haveImportsLoaded() && haveScriptBlockingStylesheetsLoaded(); } |
// This is a DOM function. |
StyleSheetList& styleSheets(); |
@@ -1155,7 +1155,7 @@ private: |
void clearFocusedElementSoon(); |
void clearFocusedElementTimerFired(Timer<Document>*); |
- bool haveStylesheetsLoaded() const; |
+ bool haveScriptBlockingStylesheetsLoaded() const; |
bool haveRenderBlockingStylesheetsLoaded() const; |
void styleResolverMayHaveChanged(); |