devtools-protocol 0.0.965299 → 0.0.966116
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 +35 -0
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +14 -0
- package/types/protocol.d.ts +24 -0
|
@@ -2873,6 +2873,16 @@
|
|
|
2873
2873
|
"items": {
|
|
2874
2874
|
"$ref": "CSSContainerQuery"
|
|
2875
2875
|
}
|
|
2876
|
+
},
|
|
2877
|
+
{
|
|
2878
|
+
"name": "supports",
|
|
2879
|
+
"description": "@supports CSS at-rule array.\nThe array enumerates @supports at-rules starting with the innermost one, going outwards.",
|
|
2880
|
+
"experimental": true,
|
|
2881
|
+
"optional": true,
|
|
2882
|
+
"type": "array",
|
|
2883
|
+
"items": {
|
|
2884
|
+
"$ref": "CSSSupports"
|
|
2885
|
+
}
|
|
2876
2886
|
}
|
|
2877
2887
|
]
|
|
2878
2888
|
},
|
|
@@ -3197,6 +3207,31 @@
|
|
|
3197
3207
|
}
|
|
3198
3208
|
]
|
|
3199
3209
|
},
|
|
3210
|
+
{
|
|
3211
|
+
"id": "CSSSupports",
|
|
3212
|
+
"description": "CSS Supports at-rule descriptor.",
|
|
3213
|
+
"experimental": true,
|
|
3214
|
+
"type": "object",
|
|
3215
|
+
"properties": [
|
|
3216
|
+
{
|
|
3217
|
+
"name": "text",
|
|
3218
|
+
"description": "Supports rule text.",
|
|
3219
|
+
"type": "string"
|
|
3220
|
+
},
|
|
3221
|
+
{
|
|
3222
|
+
"name": "range",
|
|
3223
|
+
"description": "The associated rule header range in the enclosing stylesheet (if\navailable).",
|
|
3224
|
+
"optional": true,
|
|
3225
|
+
"$ref": "SourceRange"
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
"name": "styleSheetId",
|
|
3229
|
+
"description": "Identifier of the stylesheet containing this object (if exists).",
|
|
3230
|
+
"optional": true,
|
|
3231
|
+
"$ref": "StyleSheetId"
|
|
3232
|
+
}
|
|
3233
|
+
]
|
|
3234
|
+
},
|
|
3200
3235
|
{
|
|
3201
3236
|
"id": "PlatformFontUsage",
|
|
3202
3237
|
"description": "Information about amount of glyphs that were rendered with given font.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -1386,6 +1386,9 @@ experimental domain CSS
|
|
|
1386
1386
|
# Container query list array (for rules involving container queries).
|
|
1387
1387
|
# The array enumerates container queries starting with the innermost one, going outwards.
|
|
1388
1388
|
experimental optional array of CSSContainerQuery containerQueries
|
|
1389
|
+
# @supports CSS at-rule array.
|
|
1390
|
+
# The array enumerates @supports at-rules starting with the innermost one, going outwards.
|
|
1391
|
+
experimental optional array of CSSSupports supports
|
|
1389
1392
|
|
|
1390
1393
|
# CSS coverage information.
|
|
1391
1394
|
type RuleUsage extends object
|
|
@@ -1522,6 +1525,17 @@ experimental domain CSS
|
|
|
1522
1525
|
# Optional name for the container.
|
|
1523
1526
|
optional string name
|
|
1524
1527
|
|
|
1528
|
+
# CSS Supports at-rule descriptor.
|
|
1529
|
+
experimental type CSSSupports extends object
|
|
1530
|
+
properties
|
|
1531
|
+
# Supports rule text.
|
|
1532
|
+
string text
|
|
1533
|
+
# The associated rule header range in the enclosing stylesheet (if
|
|
1534
|
+
# available).
|
|
1535
|
+
optional SourceRange range
|
|
1536
|
+
# Identifier of the stylesheet containing this object (if exists).
|
|
1537
|
+
optional StyleSheetId styleSheetId
|
|
1538
|
+
|
|
1525
1539
|
# Information about amount of glyphs that were rendered with given font.
|
|
1526
1540
|
type PlatformFontUsage extends object
|
|
1527
1541
|
properties
|
package/types/protocol.d.ts
CHANGED
|
@@ -4114,6 +4114,11 @@ export namespace Protocol {
|
|
|
4114
4114
|
* The array enumerates container queries starting with the innermost one, going outwards.
|
|
4115
4115
|
*/
|
|
4116
4116
|
containerQueries?: CSSContainerQuery[];
|
|
4117
|
+
/**
|
|
4118
|
+
* @supports CSS at-rule array.
|
|
4119
|
+
* The array enumerates @supports at-rules starting with the innermost one, going outwards.
|
|
4120
|
+
*/
|
|
4121
|
+
supports?: CSSSupports[];
|
|
4117
4122
|
}
|
|
4118
4123
|
|
|
4119
4124
|
/**
|
|
@@ -4356,6 +4361,25 @@ export namespace Protocol {
|
|
|
4356
4361
|
name?: string;
|
|
4357
4362
|
}
|
|
4358
4363
|
|
|
4364
|
+
/**
|
|
4365
|
+
* CSS Supports at-rule descriptor.
|
|
4366
|
+
*/
|
|
4367
|
+
export interface CSSSupports {
|
|
4368
|
+
/**
|
|
4369
|
+
* Supports rule text.
|
|
4370
|
+
*/
|
|
4371
|
+
text: string;
|
|
4372
|
+
/**
|
|
4373
|
+
* The associated rule header range in the enclosing stylesheet (if
|
|
4374
|
+
* available).
|
|
4375
|
+
*/
|
|
4376
|
+
range?: SourceRange;
|
|
4377
|
+
/**
|
|
4378
|
+
* Identifier of the stylesheet containing this object (if exists).
|
|
4379
|
+
*/
|
|
4380
|
+
styleSheetId?: StyleSheetId;
|
|
4381
|
+
}
|
|
4382
|
+
|
|
4359
4383
|
/**
|
|
4360
4384
|
* Information about amount of glyphs that were rendered with given font.
|
|
4361
4385
|
*/
|