devtools-protocol 0.0.1403386 → 0.0.1403989
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.
@@ -24051,27 +24051,27 @@
|
|
24051
24051
|
},
|
24052
24052
|
{
|
24053
24053
|
"name": "left",
|
24054
|
-
"description": "Frame left origin in DIP (headless
|
24054
|
+
"description": "Frame left origin in DIP (requires newWindow to be true or headless shell).",
|
24055
24055
|
"experimental": true,
|
24056
24056
|
"optional": true,
|
24057
24057
|
"type": "integer"
|
24058
24058
|
},
|
24059
24059
|
{
|
24060
24060
|
"name": "top",
|
24061
|
-
"description": "Frame top origin in DIP (headless
|
24061
|
+
"description": "Frame top origin in DIP (requires newWindow to be true or headless shell).",
|
24062
24062
|
"experimental": true,
|
24063
24063
|
"optional": true,
|
24064
24064
|
"type": "integer"
|
24065
24065
|
},
|
24066
24066
|
{
|
24067
24067
|
"name": "width",
|
24068
|
-
"description": "Frame width in DIP (headless
|
24068
|
+
"description": "Frame width in DIP (requires newWindow to be true or headless shell).",
|
24069
24069
|
"optional": true,
|
24070
24070
|
"type": "integer"
|
24071
24071
|
},
|
24072
24072
|
{
|
24073
24073
|
"name": "height",
|
24074
|
-
"description": "Frame height in DIP (headless
|
24074
|
+
"description": "Frame height in DIP (requires newWindow to be true or headless shell).",
|
24075
24075
|
"optional": true,
|
24076
24076
|
"type": "integer"
|
24077
24077
|
},
|
@@ -24084,20 +24084,20 @@
|
|
24084
24084
|
},
|
24085
24085
|
{
|
24086
24086
|
"name": "enableBeginFrameControl",
|
24087
|
-
"description": "Whether BeginFrames for this target will be controlled via DevTools (headless
|
24087
|
+
"description": "Whether BeginFrames for this target will be controlled via DevTools (headless shell only,\nnot supported on MacOS yet, false by default).",
|
24088
24088
|
"experimental": true,
|
24089
24089
|
"optional": true,
|
24090
24090
|
"type": "boolean"
|
24091
24091
|
},
|
24092
24092
|
{
|
24093
24093
|
"name": "newWindow",
|
24094
|
-
"description": "Whether to create a new Window or Tab (
|
24094
|
+
"description": "Whether to create a new Window or Tab (false by default, not supported by headless shell).",
|
24095
24095
|
"optional": true,
|
24096
24096
|
"type": "boolean"
|
24097
24097
|
},
|
24098
24098
|
{
|
24099
24099
|
"name": "background",
|
24100
|
-
"description": "Whether to create the target in background or foreground (
|
24100
|
+
"description": "Whether to create the target in background or foreground (false by default, not supported\nby headless shell).",
|
24101
24101
|
"optional": true,
|
24102
24102
|
"type": "boolean"
|
24103
24103
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -11295,23 +11295,23 @@ domain Target
|
|
11295
11295
|
parameters
|
11296
11296
|
# The initial URL the page will be navigated to. An empty string indicates about:blank.
|
11297
11297
|
string url
|
11298
|
-
# Frame left origin in DIP (headless
|
11298
|
+
# Frame left origin in DIP (requires newWindow to be true or headless shell).
|
11299
11299
|
experimental optional integer left
|
11300
|
-
# Frame top origin in DIP (headless
|
11300
|
+
# Frame top origin in DIP (requires newWindow to be true or headless shell).
|
11301
11301
|
experimental optional integer top
|
11302
|
-
# Frame width in DIP (headless
|
11302
|
+
# Frame width in DIP (requires newWindow to be true or headless shell).
|
11303
11303
|
optional integer width
|
11304
|
-
# Frame height in DIP (headless
|
11304
|
+
# Frame height in DIP (requires newWindow to be true or headless shell).
|
11305
11305
|
optional integer height
|
11306
11306
|
# The browser context to create the page in.
|
11307
11307
|
experimental optional Browser.BrowserContextID browserContextId
|
11308
|
-
# Whether BeginFrames for this target will be controlled via DevTools (headless
|
11308
|
+
# Whether BeginFrames for this target will be controlled via DevTools (headless shell only,
|
11309
11309
|
# not supported on MacOS yet, false by default).
|
11310
11310
|
experimental optional boolean enableBeginFrameControl
|
11311
|
-
# Whether to create a new Window or Tab (
|
11311
|
+
# Whether to create a new Window or Tab (false by default, not supported by headless shell).
|
11312
11312
|
optional boolean newWindow
|
11313
|
-
# Whether to create the target in background or foreground (
|
11314
|
-
#
|
11313
|
+
# Whether to create the target in background or foreground (false by default, not supported
|
11314
|
+
# by headless shell).
|
11315
11315
|
optional boolean background
|
11316
11316
|
# Whether to create the target of type "tab".
|
11317
11317
|
experimental optional boolean forTab
|
package/types/protocol.d.ts
CHANGED
@@ -17255,19 +17255,19 @@ export namespace Protocol {
|
|
17255
17255
|
*/
|
17256
17256
|
url: string;
|
17257
17257
|
/**
|
17258
|
-
* Frame left origin in DIP (headless
|
17258
|
+
* Frame left origin in DIP (requires newWindow to be true or headless shell).
|
17259
17259
|
*/
|
17260
17260
|
left?: integer;
|
17261
17261
|
/**
|
17262
|
-
* Frame top origin in DIP (headless
|
17262
|
+
* Frame top origin in DIP (requires newWindow to be true or headless shell).
|
17263
17263
|
*/
|
17264
17264
|
top?: integer;
|
17265
17265
|
/**
|
17266
|
-
* Frame width in DIP (headless
|
17266
|
+
* Frame width in DIP (requires newWindow to be true or headless shell).
|
17267
17267
|
*/
|
17268
17268
|
width?: integer;
|
17269
17269
|
/**
|
17270
|
-
* Frame height in DIP (headless
|
17270
|
+
* Frame height in DIP (requires newWindow to be true or headless shell).
|
17271
17271
|
*/
|
17272
17272
|
height?: integer;
|
17273
17273
|
/**
|
@@ -17275,17 +17275,17 @@ export namespace Protocol {
|
|
17275
17275
|
*/
|
17276
17276
|
browserContextId?: Browser.BrowserContextID;
|
17277
17277
|
/**
|
17278
|
-
* Whether BeginFrames for this target will be controlled via DevTools (headless
|
17278
|
+
* Whether BeginFrames for this target will be controlled via DevTools (headless shell only,
|
17279
17279
|
* not supported on MacOS yet, false by default).
|
17280
17280
|
*/
|
17281
17281
|
enableBeginFrameControl?: boolean;
|
17282
17282
|
/**
|
17283
|
-
* Whether to create a new Window or Tab (
|
17283
|
+
* Whether to create a new Window or Tab (false by default, not supported by headless shell).
|
17284
17284
|
*/
|
17285
17285
|
newWindow?: boolean;
|
17286
17286
|
/**
|
17287
|
-
* Whether to create the target in background or foreground (
|
17288
|
-
*
|
17287
|
+
* Whether to create the target in background or foreground (false by default, not supported
|
17288
|
+
* by headless shell).
|
17289
17289
|
*/
|
17290
17290
|
background?: boolean;
|
17291
17291
|
/**
|