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

Unified Diff: chrome/browser/resources/sync_internals/about.js

Issue 111833002: Add missing argument to Element.setAttribute() calls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/sync_internals/about.js
diff --git a/chrome/browser/resources/sync_internals/about.js b/chrome/browser/resources/sync_internals/about.js
index ba92bfc766ac38dd3ccefa349be6f93f8d2e9e6e..d915fd77a1490047a503254fdd6396739e9e54df 100644
--- a/chrome/browser/resources/sync_internals/about.js
+++ b/chrome/browser/resources/sync_internals/about.js
@@ -14,7 +14,7 @@ function highlightIfChanged(node, oldVal, newVal) {
// listeners. There can be only one listener per event at a time.
// Reference: https://developer.mozilla.org/en/DOM/element.addEventListener
node.addEventListener('webkitAnimationEnd', clearHighlight, false);
- node.setAttribute('highlighted');
+ node.setAttribute('highlighted', '');
}
}
« no previous file with comments | « chrome/browser/resources/signin_internals/signin_internals.js ('k') | chrome/browser/resources/sync_internals/sync_search.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698