| Index: Source/core/html/SearchInputType.cpp | 
| diff --git a/Source/core/html/SearchInputType.cpp b/Source/core/html/SearchInputType.cpp | 
| index 4cbfbe11e580f6d50d29ff8ea64b486a46a3e95f..d17d43207e7dfa97347c0878128f5cae96b4b28a 100644 | 
| --- a/Source/core/html/SearchInputType.cpp | 
| +++ b/Source/core/html/SearchInputType.cpp | 
| @@ -101,11 +101,11 @@ void SearchInputType::createShadowSubtree() | 
|  | 
| RefPtr<SearchFieldDecorationElement> searchDecoration = SearchFieldDecorationElement::create(element()->document()); | 
| m_searchDecoration = searchDecoration.get(); | 
| -    container->insertBefore(m_searchDecoration, textWrapper, IGNORE_EXCEPTION_STATE); | 
| +    container->insertBefore(m_searchDecoration, textWrapper, IGNORE_EXCEPTION); | 
|  | 
| RefPtr<SearchFieldCancelButtonElement> cancelButton = SearchFieldCancelButtonElement::create(element()->document()); | 
| m_cancelButton = cancelButton.get(); | 
| -    container->insertBefore(m_cancelButton, textWrapper->nextSibling(), IGNORE_EXCEPTION_STATE); | 
| +    container->insertBefore(m_cancelButton, textWrapper->nextSibling(), IGNORE_EXCEPTION); | 
| } | 
|  | 
| HTMLElement* SearchInputType::searchDecorationElement() const | 
|  |