highlightSourceOrder method
Future<void>
highlightSourceOrder(
- SourceOrderConfig sourceOrderConfig, {
- NodeId? nodeId,
- BackendNodeId? backendNodeId,
- RemoteObjectId? objectId,
Highlights the source order of the children of the DOM node with given id or with the given
JavaScript object wrapper. Either nodeId or objectId must be specified.
sourceOrderConfig A descriptor for the appearance of the overlay drawing.
nodeId Identifier of the node to highlight.
backendNodeId Identifier of the backend node to highlight.
objectId JavaScript object id of the node to be highlighted.
Implementation
Future<void> highlightSourceOrder(
SourceOrderConfig sourceOrderConfig, {
dom.NodeId? nodeId,
dom.BackendNodeId? backendNodeId,
runtime.RemoteObjectId? objectId,
}) async {
await _client.send('Overlay.highlightSourceOrder', {
'sourceOrderConfig': sourceOrderConfig,
if (nodeId != null) 'nodeId': nodeId,
if (backendNodeId != null) 'backendNodeId': backendNodeId,
if (objectId != null) 'objectId': objectId,
});
}