devtools-protocol 0.0.1101985 → 0.0.1102555
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5414,7 +5414,7 @@
|
|
5414
5414
|
},
|
5415
5415
|
{
|
5416
5416
|
"name": "getDocument",
|
5417
|
-
"description": "Returns the root DOM node (and optionally the subtree) to the caller.",
|
5417
|
+
"description": "Returns the root DOM node (and optionally the subtree) to the caller.\nImplicitly enables the DOM domain events for the current target.",
|
5418
5418
|
"parameters": [
|
5419
5419
|
{
|
5420
5420
|
"name": "depth",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -2556,6 +2556,7 @@ domain DOM
|
|
2556
2556
|
array of Quad quads
|
2557
2557
|
|
2558
2558
|
# Returns the root DOM node (and optionally the subtree) to the caller.
|
2559
|
+
# Implicitly enables the DOM domain events for the current target.
|
2559
2560
|
command getDocument
|
2560
2561
|
parameters
|
2561
2562
|
# The maximum depth at which children should be retrieved, defaults to 1. Use -1 for the
|
@@ -1961,6 +1961,7 @@ export namespace ProtocolMapping {
|
|
1961
1961
|
};
|
1962
1962
|
/**
|
1963
1963
|
* Returns the root DOM node (and optionally the subtree) to the caller.
|
1964
|
+
* Implicitly enables the DOM domain events for the current target.
|
1964
1965
|
*/
|
1965
1966
|
'DOM.getDocument': {
|
1966
1967
|
paramsType: [Protocol.DOM.GetDocumentRequest?];
|
@@ -1247,6 +1247,7 @@ export namespace ProtocolProxyApi {
|
|
1247
1247
|
|
1248
1248
|
/**
|
1249
1249
|
* Returns the root DOM node (and optionally the subtree) to the caller.
|
1250
|
+
* Implicitly enables the DOM domain events for the current target.
|
1250
1251
|
*/
|
1251
1252
|
getDocument(params: Protocol.DOM.GetDocumentRequest): Promise<Protocol.DOM.GetDocumentResponse>;
|
1252
1253
|
|