(nodeId: Protocol.DOM.NodeId|null)
| 1672 | } |
| 1673 | |
| 1674 | nodeForId(nodeId: Protocol.DOM.NodeId|null): DOMNode|null { |
| 1675 | return nodeId ? this.idToDOMNode.get(nodeId) || null : null; |
| 1676 | } |
| 1677 | |
| 1678 | documentUpdated(): void { |
| 1679 | // If this frame doesn't have a document now, |
no test coverage detected