| Index: tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html
|
| diff --git a/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html b/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html
|
| index 0cceb10aeca57cfbc20367bb25637fa333f52a59..cb1e0fc4b945d0875990d766325f07a2e9511912 100644
|
| --- a/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html
|
| +++ b/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html
|
| @@ -83,7 +83,7 @@ Polymer({
|
| snapshot.objectInstance.category, snapshot.objectInstance.typeName);
|
| if (typeInfo) {
|
| var customView = new typeInfo.constructor();
|
| - this.appendChild(customView);
|
| + Polymer.dom(this).appendChild(customView);
|
| customView.modelEvent = snapshot;
|
| } else {
|
| this.appendGenericAnalysis_(snapshot);
|
| @@ -98,7 +98,7 @@ Polymer({
|
| var titleEl = document.createElement('div');
|
| titleEl.classList.add('title');
|
| titleEl.appendChild(document.createTextNode('Snapshot of '));
|
| - this.appendChild(titleEl);
|
| + Polymer.dom(this).appendChild(titleEl);
|
|
|
| var instanceLinkEl = document.createElement('tr-ui-a-analysis-link');
|
| instanceLinkEl.selection = new tr.model.EventSet(instance);
|
| @@ -112,7 +112,7 @@ Polymer({
|
| }));
|
|
|
| var tableEl = document.createElement('table');
|
| - this.appendChild(tableEl);
|
| + Polymer.dom(this).appendChild(tableEl);
|
|
|
| var rowEl = document.createElement('tr');
|
| tableEl.appendChild(rowEl);
|
|
|