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

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

Issue 1967613003: Migrate child element manipulation, innerHTML, classList, attributes, (Closed) Base URL: https://github.com/catapult-project/catapult.git@polymer10-migration
Patch Set: white space fix. Created 4 years, 7 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/base/unittest/interactive_test_runner.html ('k') | tracing/tracing/model/stack_frame.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/base/unittest/suite_loader.html
diff --git a/tracing/tracing/base/unittest/suite_loader.html b/tracing/tracing/base/unittest/suite_loader.html
index e72bcd9c1c85af6a20cf112f50260cf0d4f8f9ad..655bb4003c4d1c0d3917897199600a7655b19363 100644
--- a/tracing/tracing/base/unittest/suite_loader.html
+++ b/tracing/tracing/base/unittest/suite_loader.html
@@ -22,8 +22,8 @@ tr.exportTo('tr.b.unittest', function() {
return new Promise(function(resolve, reject) {
var importEl = document.createElement('link');
importEl.moduleName = moduleName;
- importEl.setAttribute('rel', 'import');
- importEl.setAttribute('href', testRelpath);
+ Polymer.dom(importEl).setAttribute('rel', 'import');
+ Polymer.dom(importEl).setAttribute('href', testRelpath);
importEl.addEventListener('load', function() {
resolve({testRelpath: testRelpath,
« no previous file with comments | « tracing/tracing/base/unittest/interactive_test_runner.html ('k') | tracing/tracing/model/stack_frame.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698