devtools-protocol 0.0.1465725 → 0.0.1467305
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.
@@ -6290,6 +6290,7 @@
|
|
6290
6290
|
"view-transition",
|
6291
6291
|
"view-transition-group",
|
6292
6292
|
"view-transition-image-pair",
|
6293
|
+
"view-transition-group-children",
|
6293
6294
|
"view-transition-old",
|
6294
6295
|
"view-transition-new",
|
6295
6296
|
"placeholder",
|
@@ -22893,7 +22894,7 @@
|
|
22893
22894
|
},
|
22894
22895
|
{
|
22895
22896
|
"name": "workletOrdinal",
|
22896
|
-
"description": "
|
22897
|
+
"description": "A number denoting the (0-based) order of the worklet's\ncreation relative to all other shared storage worklets created by\ndocuments using the current storage partition.\nPresent only for SharedStorageAccessMethods: addModule, createWorklet.",
|
22897
22898
|
"optional": true,
|
22898
22899
|
"type": "integer"
|
22899
22900
|
},
|
@@ -25605,7 +25606,7 @@
|
|
25605
25606
|
"properties": [
|
25606
25607
|
{
|
25607
25608
|
"name": "recordMode",
|
25608
|
-
"description": "Controls how the trace buffer stores data.",
|
25609
|
+
"description": "Controls how the trace buffer stores data. The default is `recordUntilFull`.",
|
25609
25610
|
"experimental": true,
|
25610
25611
|
"optional": true,
|
25611
25612
|
"type": "string",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -3006,6 +3006,7 @@ domain DOM
|
|
3006
3006
|
view-transition
|
3007
3007
|
view-transition-group
|
3008
3008
|
view-transition-image-pair
|
3009
|
+
view-transition-group-children
|
3009
3010
|
view-transition-old
|
3010
3011
|
view-transition-new
|
3011
3012
|
placeholder
|
@@ -10838,15 +10839,10 @@ experimental domain Storage
|
|
10838
10839
|
# Whether or not to set an entry for a key if that key is already present.
|
10839
10840
|
# Present only for SharedStorageAccessMethod: set.
|
10840
10841
|
optional boolean ignoreIfPresent
|
10841
|
-
#
|
10842
|
-
# a shared storage worklet script, it will have a number for the
|
10843
|
-
# associated worklet, denoting the (0-indexed) order of the worklet's
|
10842
|
+
# A number denoting the (0-based) order of the worklet's
|
10844
10843
|
# creation relative to all other shared storage worklets created by
|
10845
10844
|
# documents using the current storage partition.
|
10846
|
-
# Present only for SharedStorageAccessMethods: addModule, createWorklet
|
10847
|
-
# run, selectURL, and any other SharedStorageAccessMethod when the
|
10848
|
-
# SharedStorageAccessScope is sharedStorageWorklet.
|
10849
|
-
# TODO(crbug.com/401011862): Pass this only for addModule & createWorklet.
|
10845
|
+
# Present only for SharedStorageAccessMethods: addModule, createWorklet.
|
10850
10846
|
optional integer workletOrdinal
|
10851
10847
|
# Hex representation of the DevTools token used as the TargetID for the
|
10852
10848
|
# associated shared storage worklet.
|
@@ -12036,7 +12032,7 @@ domain Tracing
|
|
12036
12032
|
|
12037
12033
|
type TraceConfig extends object
|
12038
12034
|
properties
|
12039
|
-
# Controls how the trace buffer stores data.
|
12035
|
+
# Controls how the trace buffer stores data. The default is `recordUntilFull`.
|
12040
12036
|
experimental optional enum recordMode
|
12041
12037
|
recordUntilFull
|
12042
12038
|
recordContinuously
|
package/types/protocol.d.ts
CHANGED
@@ -6382,7 +6382,7 @@ export namespace Protocol {
|
|
6382
6382
|
/**
|
6383
6383
|
* Pseudo element type.
|
6384
6384
|
*/
|
6385
|
-
export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon');
|
6385
|
+
export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon');
|
6386
6386
|
|
6387
6387
|
/**
|
6388
6388
|
* Shadow root type.
|
@@ -16700,15 +16700,10 @@ export namespace Protocol {
|
|
16700
16700
|
*/
|
16701
16701
|
ignoreIfPresent?: boolean;
|
16702
16702
|
/**
|
16703
|
-
*
|
16704
|
-
* a shared storage worklet script, it will have a number for the
|
16705
|
-
* associated worklet, denoting the (0-indexed) order of the worklet's
|
16703
|
+
* A number denoting the (0-based) order of the worklet's
|
16706
16704
|
* creation relative to all other shared storage worklets created by
|
16707
16705
|
* documents using the current storage partition.
|
16708
|
-
* Present only for SharedStorageAccessMethods: addModule, createWorklet
|
16709
|
-
* run, selectURL, and any other SharedStorageAccessMethod when the
|
16710
|
-
* SharedStorageAccessScope is sharedStorageWorklet.
|
16711
|
-
* TODO(crbug.com/401011862): Pass this only for addModule & createWorklet.
|
16706
|
+
* Present only for SharedStorageAccessMethods: addModule, createWorklet.
|
16712
16707
|
*/
|
16713
16708
|
workletOrdinal?: integer;
|
16714
16709
|
/**
|
@@ -18197,7 +18192,7 @@ export namespace Protocol {
|
|
18197
18192
|
|
18198
18193
|
export interface TraceConfig {
|
18199
18194
|
/**
|
18200
|
-
* Controls how the trace buffer stores data. (TraceConfigRecordMode enum)
|
18195
|
+
* Controls how the trace buffer stores data. The default is `recordUntilFull`. (TraceConfigRecordMode enum)
|
18201
18196
|
*/
|
18202
18197
|
recordMode?: ('recordUntilFull' | 'recordContinuously' | 'recordAsMuchAsPossible' | 'echoToConsole');
|
18203
18198
|
/**
|