| Index: Source/core/html/HTMLTextFormControlElement.cpp
|
| diff --git a/Source/core/html/HTMLTextFormControlElement.cpp b/Source/core/html/HTMLTextFormControlElement.cpp
|
| index 7f2ecff02672a19fd4f4ef962521ec1a0d0c57fc..2bd1a291413f141211c35ead11f5d9fea8e8e9a0 100644
|
| --- a/Source/core/html/HTMLTextFormControlElement.cpp
|
| +++ b/Source/core/html/HTMLTextFormControlElement.cpp
|
| @@ -205,15 +205,15 @@ static inline bool hasVisibleTextArea(RenderObject* renderer, HTMLElement* inner
|
| }
|
|
|
|
|
| -void HTMLTextFormControlElement::setRangeText(const String& replacement, ExceptionState& es)
|
| +void HTMLTextFormControlElement::setRangeText(const String& replacement, ExceptionState& exceptionState)
|
| {
|
| - setRangeText(replacement, selectionStart(), selectionEnd(), String(), es);
|
| + setRangeText(replacement, selectionStart(), selectionEnd(), String(), exceptionState);
|
| }
|
|
|
| -void HTMLTextFormControlElement::setRangeText(const String& replacement, unsigned start, unsigned end, const String& selectionMode, ExceptionState& es)
|
| +void HTMLTextFormControlElement::setRangeText(const String& replacement, unsigned start, unsigned end, const String& selectionMode, ExceptionState& exceptionState)
|
| {
|
| if (start > end) {
|
| - es.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| return;
|
| }
|
|
|
|
|