| Index: third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| index 1686fdbcaa05962f51cfd8e02662bd37347bede2..22e11982268c4e0fbbf50f7e0238d99cd79eedde 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| @@ -576,6 +576,7 @@ String HTMLInputElement::selectionDirectionForBinding(
|
|
|
| void HTMLInputElement::setSelectionStartForBinding(
|
| unsigned start,
|
| + bool is_null,
|
| ExceptionState& exception_state) {
|
| if (!input_type_->SupportsSelectionAPI()) {
|
| exception_state.ThrowDOMException(kInvalidStateError,
|
| @@ -589,6 +590,7 @@ void HTMLInputElement::setSelectionStartForBinding(
|
|
|
| void HTMLInputElement::setSelectionEndForBinding(
|
| unsigned end,
|
| + bool is_null,
|
| ExceptionState& exception_state) {
|
| if (!input_type_->SupportsSelectionAPI()) {
|
| exception_state.ThrowDOMException(kInvalidStateError,
|
| @@ -1130,6 +1132,7 @@ double HTMLInputElement::valueAsDate(bool& is_null) const {
|
| }
|
|
|
| void HTMLInputElement::setValueAsDate(double value,
|
| + bool is_null,
|
| ExceptionState& exception_state) {
|
| input_type_->SetValueAsDate(value, exception_state);
|
| }
|
|
|