devtools-protocol 0.0.1089107 → 0.0.1089613
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.
- package/json/js_protocol.json +7 -0
- package/package.json +1 -1
- package/pdl/js_protocol.pdl +3 -1
- package/types/protocol.d.ts +4 -0
package/json/js_protocol.json
CHANGED
@@ -3614,7 +3614,14 @@
|
|
3614
3614
|
{
|
3615
3615
|
"name": "executionContextId",
|
3616
3616
|
"description": "Id of the destroyed context",
|
3617
|
+
"deprecated": true,
|
3617
3618
|
"$ref": "ExecutionContextId"
|
3619
|
+
},
|
3620
|
+
{
|
3621
|
+
"name": "executionContextUniqueId",
|
3622
|
+
"description": "Unique Id of the destroyed context",
|
3623
|
+
"experimental": true,
|
3624
|
+
"type": "string"
|
3618
3625
|
}
|
3619
3626
|
]
|
3620
3627
|
},
|
package/package.json
CHANGED
package/pdl/js_protocol.pdl
CHANGED
@@ -1741,7 +1741,9 @@ domain Runtime
|
|
1741
1741
|
event executionContextDestroyed
|
1742
1742
|
parameters
|
1743
1743
|
# Id of the destroyed context
|
1744
|
-
ExecutionContextId executionContextId
|
1744
|
+
deprecated ExecutionContextId executionContextId
|
1745
|
+
# Unique Id of the destroyed context
|
1746
|
+
experimental string executionContextUniqueId
|
1745
1747
|
|
1746
1748
|
# Issued when all executionContexts were cleared in browser
|
1747
1749
|
event executionContextsCleared
|
package/types/protocol.d.ts
CHANGED