Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js

Issue 2912563003: DevTools: cleanup button styles (Closed)
Patch Set: fix test Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 d952835790792d5407b3e3abc269ce4a9fd56e7b..9fc131773e58e4d5c2a8381404921c3ba0529922 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
@@ -1152,16 +1152,13 @@ UI.registerCustomElement = function(localName, typeExtension, prototype) {
* @param {string} text
* @param {function(!Event)=} clickHandler
* @param {string=} className
- * @param {string=} title
* @return {!Element}
*/
-UI.createTextButton = function(text, clickHandler, className, title) {
+UI.createTextButton = function(text, clickHandler, className) {
var element = createElementWithClass('button', className || '', 'text-button');
element.textContent = text;
if (clickHandler)
element.addEventListener('click', clickHandler, false);
- if (title)
- element.title = title;
return element;
};

Powered by Google App Engine
This is Rietveld 408576698