| Index: third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl b/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
|
| index 385c01603ba81bcf9de31ccb7fb1019b711956b2..9dd2c5a399dea925b2df2105c02e977cb7158023 100644
|
| --- a/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
|
| @@ -81,6 +81,7 @@ static void create{{namespace}}FunctionMap()
|
| Document& document,
|
| {% if namespace == 'HTML' %}
|
| HTMLFormElement* formElement,
|
| + ExceptionState* exceptionState,
|
| {% endif %}
|
| CreateElementFlags flags)
|
| {
|
| @@ -94,7 +95,7 @@ static void create{{namespace}}FunctionMap()
|
| QualifiedName tagName(nullAtom, localName, HTMLNames::xhtmlNamespaceURI);
|
| if (flags & AsynchronousCustomElements)
|
| return CustomElement::createCustomElementAsync(document, tagName);
|
| - return CustomElement::createCustomElementSync(document, tagName);
|
| + return CustomElement::createCustomElementSync(document, tagName, exceptionState);
|
| }
|
| {% endif %}
|
|
|
|
|