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

Unified Diff: Source/core/html/parser/HTMLConstructionSite.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.h ('k') | Source/core/html/parser/HTMLDocumentParser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/parser/HTMLConstructionSite.cpp
diff --git a/Source/core/html/parser/HTMLConstructionSite.cpp b/Source/core/html/parser/HTMLConstructionSite.cpp
index e917706e404508585197e974f3bc50e4018ffa3e..af2680fc4581b737ff991d140dbaa1c937cad12d 100644
--- a/Source/core/html/parser/HTMLConstructionSite.cpp
+++ b/Source/core/html/parser/HTMLConstructionSite.cpp
@@ -231,9 +231,13 @@
return string;
}
-void HTMLConstructionSite::flushPendingText()
+void HTMLConstructionSite::flushPendingText(FlushMode mode)
{
if (m_pendingText.isEmpty())
+ return;
+
+ if (mode == FlushIfAtTextLimit
+ && !shouldUseLengthLimit(*m_pendingText.parent))
return;
PendingText pendingText;
@@ -269,7 +273,7 @@
void HTMLConstructionSite::queueTask(const HTMLConstructionSiteTask& task)
{
- flushPendingText();
+ flushPendingText(FlushAlways);
ASSERT(m_pendingText.isEmpty());
m_taskQueue.append(task);
}
@@ -533,7 +537,7 @@
void HTMLConstructionSite::processEndOfFile()
{
ASSERT(currentNode());
- flush();
+ flush(FlushAlways);
openElements()->popAll();
}
@@ -541,7 +545,7 @@
{
// We shouldn't have any queued tasks but we might have pending text which we need to promote to tasks and execute.
ASSERT(m_taskQueue.isEmpty());
- flush();
+ flush(FlushAlways);
m_document->finishedParsing();
}
@@ -689,7 +693,7 @@
// The nextChild != dummy.nextChild case occurs whenever foster parenting happened and we hit a new text node "<table>a</table>b"
// In either case we have to flush the pending text into the task queue before making more.
if (!m_pendingText.isEmpty() && (m_pendingText.parent != dummyTask.parent || m_pendingText.nextChild != dummyTask.nextChild))
- flushPendingText();
+ flushPendingText(FlushAlways);
m_pendingText.append(dummyTask.parent, dummyTask.nextChild, string, whitespaceMode);
}
« no previous file with comments | « Source/core/html/parser/HTMLConstructionSite.h ('k') | Source/core/html/parser/HTMLDocumentParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698