Add required inspector fields for Elements and Network (#5754)

This commit is contained in:
Darin Dimitrov
2018-04-27 17:04:52 +03:00
committed by GitHub
parent 03cfc0cee3
commit 1cb5e7387d
2 changed files with 30 additions and 5 deletions

View File

@@ -210,7 +210,8 @@ export class DOMNode {
localName: this.localName,
nodeValue: this.nodeValue,
children: this.children.map(c => c.toObject()),
attributes: this.attributes
attributes: this.attributes,
backendNodeId: 0
};
}
}