| Index: tracing/tracing/ui/base/ui_test.html
|
| diff --git a/tracing/tracing/ui/base/ui_test.html b/tracing/tracing/ui/base/ui_test.html
|
| index 9db0b9f396fb13f983472db7a17339724ea8b5b4..bd5fedf897ba61e41180cff40d9d457b9c9706b4 100644
|
| --- a/tracing/tracing/ui/base/ui_test.html
|
| +++ b/tracing/tracing/ui/base/ui_test.html
|
| @@ -202,7 +202,7 @@ tr.b.unittest.testSuite(function() {
|
| rectEl.setAttribute('y', 10);
|
| rectEl.setAttribute('width', 180);
|
| rectEl.setAttribute('height', 180);
|
| - this.appendChild(rectEl);
|
| + Polymer.dom(this).appendChild(rectEl);
|
| }
|
| };
|
| var el = new cls();
|
| @@ -226,7 +226,7 @@ tr.b.unittest.testSuite(function() {
|
| rectEl.setAttribute('y', 10);
|
| rectEl.setAttribute('width', 180);
|
| rectEl.setAttribute('height', 180);
|
| - this.appendChild(rectEl);
|
| + Polymer.dom(this).appendChild(rectEl);
|
| }
|
| };
|
|
|
|
|