| 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 13125efcf06748cf6851afa7b85e67f57636e3ac..3db0f4c17d89436bba8e38cc9fed9287cb15ef17 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| @@ -1180,6 +1180,19 @@ UI.createTextButton = function(text, clickHandler, className) {
|
| return element;
|
| };
|
|
|
| +/**
|
| + * @param {string=} className
|
| + * @param {string=} type
|
| + * @return {!Element}
|
| + */
|
| +UI.createInput = function(className, type) {
|
| + var element = createElementWithClass('input', className || '');
|
| + element.classList.add('harmony-input');
|
| + if (type)
|
| + element.type = type;
|
| + return element;
|
| +};
|
| +
|
| /**
|
| * @param {string} name
|
| * @param {string} title
|
|
|