Index: tracing/tracing/ui/extras/system_stats/system_stats_snapshot_view.html |
diff --git a/tracing/tracing/ui/extras/system_stats/system_stats_snapshot_view.html b/tracing/tracing/ui/extras/system_stats/system_stats_snapshot_view.html |
index ca936c9ccf6c33e820b85f0bc3bb46b4ba15551b..ff08434ab9ca43321a00bce64cffcd86f097b242 100644 |
--- a/tracing/tracing/ui/extras/system_stats/system_stats_snapshot_view.html |
+++ b/tracing/tracing/ui/extras/system_stats/system_stats_snapshot_view.html |
@@ -56,10 +56,10 @@ tr.exportTo('tr.ui.e.system_stats', function() { |
for (var statName in stats) { |
var statText = document.createElement('li'); |
statText.textContent = '' + statName + ': '; |
- statList.appendChild(statText); |
+ Polymer.dom(statList).appendChild(statText); |
if (stats[statName] instanceof Object) { |
- statList.appendChild(this.buildList_(stats[statName])); |
+ Polymer.dom(statList).appendChild(this.buildList_(stats[statName])); |
} else { |
if (this.isFloat(stats[statName])) |
statText.textContent += stats[statName].toFixed(2); |