| Index: Source/core/html/HTMLSelectElement.cpp | 
| diff --git a/Source/core/html/HTMLSelectElement.cpp b/Source/core/html/HTMLSelectElement.cpp | 
| index 4693888f8187ccd6d20f5a325107d1f8a5155002..2920095aef8f66a2598a2eb1a96e7623dc52bca9 100644 | 
| --- a/Source/core/html/HTMLSelectElement.cpp | 
| +++ b/Source/core/html/HTMLSelectElement.cpp | 
| @@ -229,7 +229,7 @@ void HTMLSelectElement::remove(int optionIndex) | 
| if (listIndex < 0) | 
| return; | 
|  | 
| -    listItems()[listIndex]->remove(IGNORE_EXCEPTION_STATE); | 
| +    listItems()[listIndex]->remove(IGNORE_EXCEPTION); | 
| } | 
|  | 
| void HTMLSelectElement::remove(HTMLOptionElement* option) | 
| @@ -237,7 +237,7 @@ void HTMLSelectElement::remove(HTMLOptionElement* option) | 
| if (option->ownerSelectElement() != this) | 
| return; | 
|  | 
| -    option->remove(IGNORE_EXCEPTION_STATE); | 
| +    option->remove(IGNORE_EXCEPTION); | 
| } | 
|  | 
| String HTMLSelectElement::value() const | 
|  |