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

Unified Diff: Source/core/html/parser/HTMLDocumentParser.cpp

Issue 558743002: Revert of Revert of HTMLConstructionSite: avoid n^2 running time for large scripts. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/parser/HTMLConstructionSite.cpp ('k') | Source/core/html/parser/HTMLTreeBuilder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/parser/HTMLDocumentParser.cpp
diff --git a/Source/core/html/parser/HTMLDocumentParser.cpp b/Source/core/html/parser/HTMLDocumentParser.cpp
index 711715617e9eb85849c9b775a231362b6a6b99c8..3d7d7a47589d0683200fadf6df8065cd30e5d01b 100644
--- a/Source/core/html/parser/HTMLDocumentParser.cpp
+++ b/Source/core/html/parser/HTMLDocumentParser.cpp
@@ -498,9 +498,10 @@
ASSERT(!m_token);
}
- // Make sure any pending text nodes are emitted before returning.
+ // Make sure all required pending text nodes are emitted before returning.
+ // This leaves "script", "style" and "svg" nodes text nodes intact.
if (!isStopped())
- m_treeBuilder->flush();
+ m_treeBuilder->flush(FlushIfAtTextLimit);
}
void HTMLDocumentParser::pumpPendingSpeculations()
@@ -635,7 +636,7 @@
// There should only be PendingText left since the tree-builder always flushes
// the task queue before returning. In case that ever changes, crash.
if (mode == ForceSynchronous)
- m_treeBuilder->flush();
+ m_treeBuilder->flush(FlushAlways);
RELEASE_ASSERT(!isStopped());
if (session.needsYield)
« no previous file with comments | « Source/core/html/parser/HTMLConstructionSite.cpp ('k') | Source/core/html/parser/HTMLTreeBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698