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

Unified Diff: tracing/tracing/ui/view_specific_brushing_state_test.html

Issue 1923953003: [polymer] Switches .appendChild() to Polymer.dom()...appendChild() (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Created 4 years, 8 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/tracks/thread_track_test.html ('k') | tracing/tracing/value/ui/histogram_span.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/view_specific_brushing_state_test.html
diff --git a/tracing/tracing/ui/view_specific_brushing_state_test.html b/tracing/tracing/ui/view_specific_brushing_state_test.html
index e4e8ece0441f0568913df8292d203dd5fb1ec29b..aff2cc5a4739848b77ddd53fa95d5e53bfeba30d 100644
--- a/tracing/tracing/ui/view_specific_brushing_state_test.html
+++ b/tracing/tracing/ui/view_specific_brushing_state_test.html
@@ -18,13 +18,13 @@ tr.b.unittest.testSuite(function() {
var stateElement = document.createElement(
'tr-ui-b-view-specific-brushing-state');
stateElement.viewId = viewId;
- containerEl.appendChild(stateElement);
+ Polymer.dom(containerEl).appendChild(stateElement);
return stateElement;
}
function addChildDiv(element) {
var child = element.ownerDocument.createElement('div');
- element.appendChild(child);
+ Polymer.dom(element).appendChild(child);
return child;
}
« no previous file with comments | « tracing/tracing/ui/tracks/thread_track_test.html ('k') | tracing/tracing/value/ui/histogram_span.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698