| Index: Source/core/html/HTMLSelectElement.cpp
|
| diff --git a/Source/core/html/HTMLSelectElement.cpp b/Source/core/html/HTMLSelectElement.cpp
|
| index aae732033da0a5be49bb6f036089496b929b70bf..455d046f6f65a146b21a88e54c24c24d0325a138 100644
|
| --- a/Source/core/html/HTMLSelectElement.cpp
|
| +++ b/Source/core/html/HTMLSelectElement.cpp
|
| @@ -1565,7 +1565,7 @@ void HTMLSelectElement::finishParsingChildren()
|
| bool HTMLSelectElement::anonymousIndexedSetter(unsigned index, PassRefPtr<HTMLOptionElement> value, ExceptionState& es)
|
| {
|
| if (!value) {
|
| - es.throwDOMException(TypeMismatchError);
|
| + es.throwUninformativeAndGenericDOMException(TypeMismatchError);
|
| return false;
|
| }
|
| setOption(index, value.get(), es);
|
|
|