Index: Source/core/html/parser/HTMLScriptRunner.h |
diff --git a/Source/core/html/parser/HTMLScriptRunner.h b/Source/core/html/parser/HTMLScriptRunner.h |
index d9dc3869ebe8c94320becf86fcf7458008d81934..184259f56eec40f58597f3dee82e34827466e6b8 100644 |
--- a/Source/core/html/parser/HTMLScriptRunner.h |
+++ b/Source/core/html/parser/HTMLScriptRunner.h |
@@ -87,7 +87,8 @@ private: |
RawPtrWillBeMember<Document> m_document; |
RawPtrWillBeMember<HTMLScriptRunnerHost> m_host; |
PendingScript m_parserBlockingScript; |
- HeapDeque<PendingScript> m_scriptsToExecuteAfterParsing; // http://www.whatwg.org/specs/web-apps/current-work/#list-of-scripts-that-will-execute-when-the-document-has-finished-parsing |
+ // http://www.whatwg.org/specs/web-apps/current-work/#list-of-scripts-that-will-execute-when-the-document-has-finished-parsing |
+ WillBeHeapDeque<PendingScript> m_scriptsToExecuteAfterParsing; |
unsigned m_scriptNestingLevel; |
// We only want stylesheet loads to trigger script execution if script |