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

Unified Diff: tracing/tracing/ui/base/radio_picker_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/base/overlay_test.html ('k') | tracing/tracing/ui/base/resize_sensor_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/base/radio_picker_test.html
diff --git a/tracing/tracing/ui/base/radio_picker_test.html b/tracing/tracing/ui/base/radio_picker_test.html
index dea60cdd492c10574d6d7574243c1e896c615ab6..c1d18aa617ee0de3d09829b60a2e6a0680a02e14 100644
--- a/tracing/tracing/ui/base/radio_picker_test.html
+++ b/tracing/tracing/ui/base/radio_picker_test.html
@@ -36,7 +36,7 @@ tr.b.unittest.testSuite(function() {
var rp = document.createElement('tr-ui-b-radio-picker');
rp.items = items;
rp.settingsKey = 'radio-picker-test-one';
- container1.appendChild(rp);
+ Polymer.dom(container1).appendChild(rp);
this.addHTMLOutput(container1);
assert.equal(rp.selectedKey, undefined);
rp.select('Toyota');
@@ -48,7 +48,7 @@ tr.b.unittest.testSuite(function() {
var rp2 = document.createElement('tr-ui-b-radio-picker');
rp2.items = items;
rp2.settingsKey = 'radio-picker-test-one';
- container2.appendChild(rp2);
+ Polymer.dom(container2).appendChild(rp2);
this.addHTMLOutput(container2);
assert.equal(rp2.selectedKey, 'Toyota');
@@ -65,7 +65,7 @@ tr.b.unittest.testSuite(function() {
var rp = document.createElement('tr-ui-b-radio-picker');
rp.settingsKey = 'radio-picker-test-two';
rp.items = items;
- container1.appendChild(rp);
+ Polymer.dom(container1).appendChild(rp);
this.addHTMLOutput(container1);
assert.equal(rp.selectedKey, undefined);
rp.select('Boeing');
@@ -76,7 +76,7 @@ tr.b.unittest.testSuite(function() {
container2.style.border = 'solid';
var rp2 = document.createElement('tr-ui-b-radio-picker');
rp2.settingsKey = 'radio-picker-test-two';
- container2.appendChild(rp2);
+ Polymer.dom(container2).appendChild(rp2);
this.addHTMLOutput(container2);
rp2.items = items;
« no previous file with comments | « tracing/tracing/ui/base/overlay_test.html ('k') | tracing/tracing/ui/base/resize_sensor_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698