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

Unified Diff: tracing/tracing/base/unittest/html_test_results.html

Issue 1922193002: [polymer] Replaces this.appendChild with Polymer.dom(this).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 | « no previous file | tracing/tracing/base/unittest/interactive_test_runner.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/base/unittest/html_test_results.html
diff --git a/tracing/tracing/base/unittest/html_test_results.html b/tracing/tracing/base/unittest/html_test_results.html
index fa65a9e88fb4c5fbd2ad5296b1d4c2955ff5ec69..9f8d54f4910e3bf9e5982d7040ecb8f2107b65ff 100644
--- a/tracing/tracing/base/unittest/html_test_results.html
+++ b/tracing/tracing/base/unittest/html_test_results.html
@@ -119,7 +119,7 @@ tr.exportTo('tr.b.unittest', function() {
__proto__: HTMLUnknownElement.prototype,
decorate: function() {
- this.appendChild(tr.ui.b.instantiateTemplate(
+ Polymer.dom(this).appendChild(tr.ui.b.instantiateTemplate(
'#x-html-test-case-result-template', THIS_DOC));
this.testCase_ = undefined;
this.testCaseHRef_ = undefined;
@@ -361,7 +361,7 @@ tr.exportTo('tr.b.unittest', function() {
testCaseResult.testCaseHRef = href;
testCaseResult.testStatus = TestStatus.PENDING;
this.testCaseResultsByCaseGUID_[testCase.guid] = testCaseResult;
- this.appendChild(testCaseResult);
+ Polymer.dom(this).appendChild(testCaseResult);
this.updateDisplayStateForResult_(testCaseResult);
}, this);
},
« no previous file with comments | « no previous file | tracing/tracing/base/unittest/interactive_test_runner.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698