| Index: Source/core/html/HTMLKeygenElement.cpp
|
| diff --git a/Source/core/html/HTMLKeygenElement.cpp b/Source/core/html/HTMLKeygenElement.cpp
|
| index 590e6775ab11e90a0ad7e50a72a13dded445d3f3..6b255356683fc7201a3670474632fc35217ea081 100644
|
| --- a/Source/core/html/HTMLKeygenElement.cpp
|
| +++ b/Source/core/html/HTMLKeygenElement.cpp
|
| @@ -62,11 +62,11 @@ void HTMLKeygenElement::didAddUserAgentShadowRoot(ShadowRoot* root)
|
| select->setPart(keygenSelectPseudoId);
|
| for (size_t i = 0; i < keys.size(); ++i) {
|
| RefPtr<HTMLOptionElement> option = HTMLOptionElement::create(document());
|
| - option->appendChild(Text::create(document(), keys[i]), ASSERT_NO_EXCEPTION);
|
| - select->appendChild(option, ASSERT_NO_EXCEPTION);
|
| + option->appendChild(Text::create(document(), keys[i]), ASSERT_NO_EXCEPTION, DeprecatedAttachNow);
|
| + select->appendChild(option, ASSERT_NO_EXCEPTION, DeprecatedAttachNow);
|
| }
|
|
|
| - root->appendChild(select, ASSERT_NO_EXCEPTION);
|
| + root->appendChild(select, ASSERT_NO_EXCEPTION, DeprecatedAttachNow);
|
| }
|
|
|
| void HTMLKeygenElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
|
|
|