| Index: tracing/tracing/ui/base/overlay.html
|
| diff --git a/tracing/tracing/ui/base/overlay.html b/tracing/tracing/ui/base/overlay.html
|
| index afda50a4434d065db177e6169ca8c83467703429..e0c468369add3538a952673dda3b51bc2b073f33 100644
|
| --- a/tracing/tracing/ui/base/overlay.html
|
| +++ b/tracing/tracing/ui/base/overlay.html
|
| @@ -142,7 +142,7 @@ tr.exportTo('tr.ui.b', function() {
|
| * Initializes the overlay element.
|
| */
|
| decorate: function() {
|
| - this.classList.add('overlay');
|
| + Polymer.dom(this).classList.add('overlay');
|
|
|
| this.parentEl_ = this.ownerDocument.body;
|
|
|
| @@ -246,7 +246,7 @@ tr.exportTo('tr.ui.b', function() {
|
| },
|
|
|
| hide_: function() {
|
| - this.parentEl_.removeChild(this);
|
| + Polymer.dom(this.parentEl_).removeChild(this);
|
|
|
| this.parentEl_.removeEventListener('focusin', this.onFocusIn_);
|
|
|
|
|