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

Unified Diff: tracing/tracing/ui/base/mouse_mode_icon.html

Issue 1967613003: Migrate child element manipulation, innerHTML, classList, attributes, (Closed) Base URL: https://github.com/catapult-project/catapult.git@polymer10-migration
Patch Set: white space fix. Created 4 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
« no previous file with comments | « tracing/tracing/ui/base/list_view.html ('k') | tracing/tracing/ui/base/mouse_mode_icon_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/base/mouse_mode_icon.html
diff --git a/tracing/tracing/ui/base/mouse_mode_icon.html b/tracing/tracing/ui/base/mouse_mode_icon.html
index b28a85c474773d3af4c61fb7c12b198768d21ffc..f400a99656ee9bd4679b48305244b1c68e54fe67 100644
--- a/tracing/tracing/ui/base/mouse_mode_icon.html
+++ b/tracing/tracing/ui/base/mouse_mode_icon.html
@@ -72,9 +72,9 @@ Polymer({
set active(active) {
this.active_ = !!active;
if (this.active_)
- this.classList.add('active');
+ Polymer.dom(this).classList.add('active');
else
- this.classList.remove('active');
+ Polymer.dom(this).classList.remove('active');
this.updateContents_();
},
« no previous file with comments | « tracing/tracing/ui/base/list_view.html ('k') | tracing/tracing/ui/base/mouse_mode_icon_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698