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

Unified Diff: tracing/tracing/ui/timeline_viewport.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/timeline_view_test.html ('k') | tracing/tracing/ui/tracks/alert_track_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/timeline_viewport.html
diff --git a/tracing/tracing/ui/timeline_viewport.html b/tracing/tracing/ui/timeline_viewport.html
index 61b4e3c3ec0242ad7d2f8e96fb4e1f79abd2f381..1230fd6511edb9227599c49dfba8f6fb013072ad 100644
--- a/tracing/tracing/ui/timeline_viewport.html
+++ b/tracing/tracing/ui/timeline_viewport.html
@@ -120,7 +120,7 @@ tr.exportTo('tr.ui', function() {
this.iframe_ = document.createElement('iframe');
this.iframe_.style.cssText =
'position:absolute;width:100%;height:0;border:0;visibility:hidden;';
- this.parentEl_.appendChild(this.iframe_);
+ Polymer.dom(this.parentEl_).appendChild(this.iframe_);
this.iframe_.contentWindow.addEventListener('resize', this.onResize_);
}
« no previous file with comments | « tracing/tracing/ui/timeline_view_test.html ('k') | tracing/tracing/ui/tracks/alert_track_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698