| Index: third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| index a98a6bdbeb2108c8a2e6c1ba092564b68c7ba93d..3ac40cb92d2a8c6038a3727857cf9171a54ef7cb 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| @@ -1524,7 +1524,8 @@ WebInspector.bindInput = function(input, apply, validate, numeric)
|
| var valid = validate(value);
|
| input.classList.toggle("error-input", !valid);
|
| input.value = value;
|
| - input.setSelectionRange(value.length, value.length);
|
| + if (input.type !== "number")
|
| + input.setSelectionRange(value.length, value.length);
|
| }
|
|
|
| return setValue;
|
|
|