| 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 fd669944760b2855fa2fba1fd1c029b203fcfe0e..60c298bbf6a995808b3cb1d95f170cc0101d93ac 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| @@ -1254,6 +1254,19 @@ function createRadioLabel(name, title, checked)
|
| }
|
|
|
| /**
|
| + * @param {string} title
|
| + * @param {string} iconClass
|
| + * @return {!Element}
|
| + */
|
| +function createLabel(title, iconClass)
|
| +{
|
| + var element = createElement("label", "dt-icon-label");
|
| + element.createChild("span").textContent = title;
|
| + element.type = iconClass;
|
| + return element;
|
| +}
|
| +
|
| +/**
|
| * @param {string=} title
|
| * @param {boolean=} checked
|
| * @param {string=} subtitle
|
|
|