| 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 f927d2155bdaca6e27ee40c7b7e8094fb2910482..c9e9ebe4f695d985cdd972785c60dea93f5f82bd 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| @@ -1203,6 +1203,7 @@ UI.createTextButton = function(text, clickHandler, className, primary) {
|
| */
|
| UI.createInput = function(className, type) {
|
| var element = createElementWithClass('input', className || '');
|
| + element.spellcheck = false;
|
| element.classList.add('harmony-input');
|
| if (type)
|
| element.type = type;
|
|
|