| Index: Source/core/html/HTMLKeygenElement.cpp
|
| diff --git a/Source/core/html/HTMLKeygenElement.cpp b/Source/core/html/HTMLKeygenElement.cpp
|
| index f2a2eff70f673954fec984ced033214f6249d188..a79b7ebcb17105b9a3c0993efdcdb8704086fa73 100644
|
| --- a/Source/core/html/HTMLKeygenElement.cpp
|
| +++ b/Source/core/html/HTMLKeygenElement.cpp
|
| @@ -62,11 +62,11 @@ void HTMLKeygenElement::didAddUserAgentShadowRoot(ShadowRoot* root)
|
| select->setPseudo(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_STATE);
|
| - select->appendChild(option, ASSERT_NO_EXCEPTION_STATE);
|
| + option->appendChild(Text::create(document(), keys[i]), ASSERT_NO_EXCEPTION);
|
| + select->appendChild(option, ASSERT_NO_EXCEPTION);
|
| }
|
|
|
| - root->appendChild(select, ASSERT_NO_EXCEPTION_STATE);
|
| + root->appendChild(select, ASSERT_NO_EXCEPTION);
|
| }
|
|
|
| void HTMLKeygenElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
|
|
|