devtools-protocol 0.0.966949 → 0.0.966979
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.
|
@@ -8028,12 +8028,6 @@
|
|
|
8028
8028
|
"optional": true,
|
|
8029
8029
|
"type": "integer"
|
|
8030
8030
|
},
|
|
8031
|
-
{
|
|
8032
|
-
"name": "waitForNavigation",
|
|
8033
|
-
"description": "If set the virtual time policy change should be deferred until any frame starts navigating.\nNote any previous deferred policy change is superseded.",
|
|
8034
|
-
"optional": true,
|
|
8035
|
-
"type": "boolean"
|
|
8036
|
-
},
|
|
8037
8031
|
{
|
|
8038
8032
|
"name": "initialVirtualTime",
|
|
8039
8033
|
"description": "If set, base::Time::Now will be overridden to initially return this value.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -3656,9 +3656,6 @@ domain Emulation
|
|
|
3656
3656
|
# If set this specifies the maximum number of tasks that can be run before virtual is forced
|
|
3657
3657
|
# forwards to prevent deadlock.
|
|
3658
3658
|
optional integer maxVirtualTimeTaskStarvationCount
|
|
3659
|
-
# If set the virtual time policy change should be deferred until any frame starts navigating.
|
|
3660
|
-
# Note any previous deferred policy change is superseded.
|
|
3661
|
-
optional boolean waitForNavigation
|
|
3662
3659
|
# If set, base::Time::Now will be overridden to initially return this value.
|
|
3663
3660
|
optional Network.TimeSinceEpoch initialVirtualTime
|
|
3664
3661
|
returns
|
package/types/protocol.d.ts
CHANGED
|
@@ -7413,11 +7413,6 @@ export namespace Protocol {
|
|
|
7413
7413
|
* forwards to prevent deadlock.
|
|
7414
7414
|
*/
|
|
7415
7415
|
maxVirtualTimeTaskStarvationCount?: integer;
|
|
7416
|
-
/**
|
|
7417
|
-
* If set the virtual time policy change should be deferred until any frame starts navigating.
|
|
7418
|
-
* Note any previous deferred policy change is superseded.
|
|
7419
|
-
*/
|
|
7420
|
-
waitForNavigation?: boolean;
|
|
7421
7416
|
/**
|
|
7422
7417
|
* If set, base::Time::Now will be overridden to initially return this value.
|
|
7423
7418
|
*/
|