devtools-protocol 0.0.1402790 → 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.
- package/json/browser_protocol.json +8 -9
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +9 -11
- package/types/protocol.d.ts +10 -10
@@ -1898,7 +1898,7 @@
|
|
1898
1898
|
},
|
1899
1899
|
{
|
1900
1900
|
"id": "SelectElementAccessibilityIssueDetails",
|
1901
|
-
"description": "This
|
1901
|
+
"description": "This issue warns about errors in the select element content model.",
|
1902
1902
|
"type": "object",
|
1903
1903
|
"properties": [
|
1904
1904
|
{
|
@@ -21762,7 +21762,6 @@
|
|
21762
21762
|
"description": "Enum of possible storage types.",
|
21763
21763
|
"type": "string",
|
21764
21764
|
"enum": [
|
21765
|
-
"appcache",
|
21766
21765
|
"cookies",
|
21767
21766
|
"file_systems",
|
21768
21767
|
"indexeddb",
|
@@ -24052,27 +24051,27 @@
|
|
24052
24051
|
},
|
24053
24052
|
{
|
24054
24053
|
"name": "left",
|
24055
|
-
"description": "Frame left origin in DIP (headless
|
24054
|
+
"description": "Frame left origin in DIP (requires newWindow to be true or headless shell).",
|
24056
24055
|
"experimental": true,
|
24057
24056
|
"optional": true,
|
24058
24057
|
"type": "integer"
|
24059
24058
|
},
|
24060
24059
|
{
|
24061
24060
|
"name": "top",
|
24062
|
-
"description": "Frame top origin in DIP (headless
|
24061
|
+
"description": "Frame top origin in DIP (requires newWindow to be true or headless shell).",
|
24063
24062
|
"experimental": true,
|
24064
24063
|
"optional": true,
|
24065
24064
|
"type": "integer"
|
24066
24065
|
},
|
24067
24066
|
{
|
24068
24067
|
"name": "width",
|
24069
|
-
"description": "Frame width in DIP (headless
|
24068
|
+
"description": "Frame width in DIP (requires newWindow to be true or headless shell).",
|
24070
24069
|
"optional": true,
|
24071
24070
|
"type": "integer"
|
24072
24071
|
},
|
24073
24072
|
{
|
24074
24073
|
"name": "height",
|
24075
|
-
"description": "Frame height in DIP (headless
|
24074
|
+
"description": "Frame height in DIP (requires newWindow to be true or headless shell).",
|
24076
24075
|
"optional": true,
|
24077
24076
|
"type": "integer"
|
24078
24077
|
},
|
@@ -24085,20 +24084,20 @@
|
|
24085
24084
|
},
|
24086
24085
|
{
|
24087
24086
|
"name": "enableBeginFrameControl",
|
24088
|
-
"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).",
|
24089
24088
|
"experimental": true,
|
24090
24089
|
"optional": true,
|
24091
24090
|
"type": "boolean"
|
24092
24091
|
},
|
24093
24092
|
{
|
24094
24093
|
"name": "newWindow",
|
24095
|
-
"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).",
|
24096
24095
|
"optional": true,
|
24097
24096
|
"type": "boolean"
|
24098
24097
|
},
|
24099
24098
|
{
|
24100
24099
|
"name": "background",
|
24101
|
-
"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).",
|
24102
24101
|
"optional": true,
|
24103
24102
|
"type": "boolean"
|
24104
24103
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -992,14 +992,13 @@ experimental domain Audits
|
|
992
992
|
InteractiveContentOptionChild
|
993
993
|
InteractiveContentLegendChild
|
994
994
|
|
995
|
-
# This
|
995
|
+
# This issue warns about errors in the select element content model.
|
996
996
|
type SelectElementAccessibilityIssueDetails extends object
|
997
997
|
properties
|
998
998
|
DOM.BackendNodeId nodeId
|
999
999
|
SelectElementAccessibilityIssueReason selectElementAccessibilityIssueReason
|
1000
1000
|
boolean hasDisallowedAttributes
|
1001
1001
|
|
1002
|
-
|
1003
1002
|
type StyleSheetLoadingIssueReason extends string
|
1004
1003
|
enum
|
1005
1004
|
LateImportRule
|
@@ -10261,7 +10260,6 @@ experimental domain Storage
|
|
10261
10260
|
# Enum of possible storage types.
|
10262
10261
|
type StorageType extends string
|
10263
10262
|
enum
|
10264
|
-
appcache
|
10265
10263
|
cookies
|
10266
10264
|
file_systems
|
10267
10265
|
indexeddb
|
@@ -11297,23 +11295,23 @@ domain Target
|
|
11297
11295
|
parameters
|
11298
11296
|
# The initial URL the page will be navigated to. An empty string indicates about:blank.
|
11299
11297
|
string url
|
11300
|
-
# Frame left origin in DIP (headless
|
11298
|
+
# Frame left origin in DIP (requires newWindow to be true or headless shell).
|
11301
11299
|
experimental optional integer left
|
11302
|
-
# Frame top origin in DIP (headless
|
11300
|
+
# Frame top origin in DIP (requires newWindow to be true or headless shell).
|
11303
11301
|
experimental optional integer top
|
11304
|
-
# Frame width in DIP (headless
|
11302
|
+
# Frame width in DIP (requires newWindow to be true or headless shell).
|
11305
11303
|
optional integer width
|
11306
|
-
# Frame height in DIP (headless
|
11304
|
+
# Frame height in DIP (requires newWindow to be true or headless shell).
|
11307
11305
|
optional integer height
|
11308
11306
|
# The browser context to create the page in.
|
11309
11307
|
experimental optional Browser.BrowserContextID browserContextId
|
11310
|
-
# 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,
|
11311
11309
|
# not supported on MacOS yet, false by default).
|
11312
11310
|
experimental optional boolean enableBeginFrameControl
|
11313
|
-
# 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).
|
11314
11312
|
optional boolean newWindow
|
11315
|
-
# Whether to create the target in background or foreground (
|
11316
|
-
#
|
11313
|
+
# Whether to create the target in background or foreground (false by default, not supported
|
11314
|
+
# by headless shell).
|
11317
11315
|
optional boolean background
|
11318
11316
|
# Whether to create the target of type "tab".
|
11319
11317
|
experimental optional boolean forTab
|
package/types/protocol.d.ts
CHANGED
@@ -3654,7 +3654,7 @@ export namespace Protocol {
|
|
3654
3654
|
export type SelectElementAccessibilityIssueReason = ('DisallowedSelectChild' | 'DisallowedOptGroupChild' | 'NonPhrasingContentOptionChild' | 'InteractiveContentOptionChild' | 'InteractiveContentLegendChild');
|
3655
3655
|
|
3656
3656
|
/**
|
3657
|
-
* This
|
3657
|
+
* This issue warns about errors in the select element content model.
|
3658
3658
|
*/
|
3659
3659
|
export interface SelectElementAccessibilityIssueDetails {
|
3660
3660
|
nodeId: DOM.BackendNodeId;
|
@@ -16032,7 +16032,7 @@ export namespace Protocol {
|
|
16032
16032
|
/**
|
16033
16033
|
* Enum of possible storage types.
|
16034
16034
|
*/
|
16035
|
-
export type StorageType = ('
|
16035
|
+
export type StorageType = ('cookies' | 'file_systems' | 'indexeddb' | 'local_storage' | 'shader_cache' | 'websql' | 'service_workers' | 'cache_storage' | 'interest_groups' | 'shared_storage' | 'storage_buckets' | 'all' | 'other');
|
16036
16036
|
|
16037
16037
|
/**
|
16038
16038
|
* Usage for a storage type.
|
@@ -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
|
/**
|