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

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

Issue 494993002: 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, 4 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') | no next file » | 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..97d7976ad25b072bf18fdcee005b907ecfe877e4 100644
--- a/Source/core/html/parser/HTMLConstructionSite.cpp
+++ b/Source/core/html/parser/HTMLConstructionSite.cpp
@@ -231,11 +231,14 @@ static String atomizeIfAllWhitespace(const String& string, WhitespaceMode whites
return string;
}
-void HTMLConstructionSite::flushPendingText()
+void HTMLConstructionSite::flushPendingText(bool force)
{
if (m_pendingText.isEmpty())
return;
+ if (!force && !shouldUseLengthLimit(*m_pendingText.parent))
+ return;
+
PendingText pendingText;
// Hold onto the current pending text on the stack so that queueTask doesn't recurse infinitely.
m_pendingText.swap(pendingText);
@@ -269,7 +272,7 @@ void HTMLConstructionSite::flushPendingText()
void HTMLConstructionSite::queueTask(const HTMLConstructionSiteTask& task)
{
- flushPendingText();
+ flushPendingText(true);
ASSERT(m_pendingText.isEmpty());
m_taskQueue.append(task);
}
@@ -689,7 +692,7 @@ void HTMLConstructionSite::insertTextNode(const String& string, WhitespaceMode w
// 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(true);
eseidel 2014/08/23 19:39:59 We'll need to fix this to be an enum (bools make f
eustas 2014/08/26 08:12:25 Added enum. Now codesearch is working again. I've
m_pendingText.append(dummyTask.parent, dummyTask.nextChild, string, whitespaceMode);
}
« no previous file with comments | « Source/core/html/parser/HTMLConstructionSite.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698