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

Unified Diff: chrome/browser/resources/options/deletable_item_list.js

Issue 6241006: DOMUI: Polish common HTML controls to match the rest of the DOMUI pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 9 years, 11 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: chrome/browser/resources/options/deletable_item_list.js
diff --git a/chrome/browser/resources/options/deletable_item_list.js b/chrome/browser/resources/options/deletable_item_list.js
index 5d5b35be3f090da95480ebaf5b75cbc33dde3570..11388a1b3a3a83b42b9e85922fe5937fb83e1da8 100644
--- a/chrome/browser/resources/options/deletable_item_list.js
+++ b/chrome/browser/resources/options/deletable_item_list.js
@@ -59,7 +59,8 @@ cr.define('options', function() {
this.appendChild(this.contentElement_);
this.closeButtonElement_ = this.ownerDocument.createElement('button');
- this.closeButtonElement_.className = 'close-button';
+ this.closeButtonElement_.classList.add('raw-button');
+ this.closeButtonElement_.classList.add('close-button');
this.closeButtonElement_.addEventListener('mousedown',
this.handleMouseDownUpOnClose_);
this.closeButtonElement_.addEventListener('mouseup',
« no previous file with comments | « no previous file | chrome/browser/resources/options/options.html » ('j') | chrome/browser/resources/options/options_page.css » ('J')

Powered by Google App Engine
This is Rietveld 408576698