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

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

Issue 2292433002: CL for perf tryjob on linux (Closed)
Patch Set: Created 4 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 | « third_party/WebKit/Source/core/editing/EditingUtilities.cpp ('k') | tools/run-perf-test.cfg » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/parser/HTMLConstructionSite.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLConstructionSite.cpp b/third_party/WebKit/Source/core/html/parser/HTMLConstructionSite.cpp
index 98391e7f2cc4021aee338c0a9d23f41fe3e52b95..0d07296838ea8e0d65278f043b5fb30e4924820c 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLConstructionSite.cpp
+++ b/third_party/WebKit/Source/core/html/parser/HTMLConstructionSite.cpp
@@ -836,7 +836,7 @@ HTMLElement* HTMLConstructionSite::createHTMLElement(AtomicHTMLToken* token)
// 7.
QualifiedName elementQName(nullAtom, token->name(), HTMLNames::xhtmlNamespaceURI);
- element = definition->createElementSync(document, elementQName);
+ element = definition->createElementSync(document, elementQName, nullptr);
// "8. Append each attribute in the given token to element."
// We don't use setAttributes here because the custom element
@@ -853,7 +853,7 @@ HTMLElement* HTMLConstructionSite::createHTMLElement(AtomicHTMLToken* token)
// pass the current form element. We should rework form
// association to occur after construction to allow better
// code sharing here.
- element = HTMLElementFactory::createHTMLElement(token->name(), document, form, getCreateElementFlags());
+ element = HTMLElementFactory::createHTMLElement(token->name(), document, form, 0, getCreateElementFlags());
// "8. Append each attribute in the given token to element."
setAttributes(element, token, m_parserContentPolicy);
« no previous file with comments | « third_party/WebKit/Source/core/editing/EditingUtilities.cpp ('k') | tools/run-perf-test.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698