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

Unified Diff: third_party/WebKit/Source/core/editing/EditingUtilities.cpp

Issue 2002063003: Change "bool createdByParser" of createElement() to enum (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cestate
Patch Set: Build fix Created 4 years, 7 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
Index: third_party/WebKit/Source/core/editing/EditingUtilities.cpp
diff --git a/third_party/WebKit/Source/core/editing/EditingUtilities.cpp b/third_party/WebKit/Source/core/editing/EditingUtilities.cpp
index cb18baab752c2bf0e892b9e58210b55588075394..919b3020ef9fbd2e75c2cc68cd50c26914769549 100644
--- a/third_party/WebKit/Source/core/editing/EditingUtilities.cpp
+++ b/third_party/WebKit/Source/core/editing/EditingUtilities.cpp
@@ -1326,7 +1326,7 @@ HTMLElement* createDefaultParagraphElement(Document& document)
HTMLElement* createHTMLElement(Document& document, const QualifiedName& name)
{
- return HTMLElementFactory::createHTMLElement(name.localName(), document, 0, false);
+ return HTMLElementFactory::createHTMLElement(name.localName(), document, 0, AsynchronousCustomElements);
}
bool isTabHTMLSpanElement(const Node* node)

Powered by Google App Engine
This is Rietveld 408576698