devtools-protocol 0.0.1033355 → 0.0.1034791
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.
@@ -3167,6 +3167,16 @@
|
|
3167
3167
|
"description": "The entire property range in the enclosing style declaration (if available).",
|
3168
3168
|
"optional": true,
|
3169
3169
|
"$ref": "SourceRange"
|
3170
|
+
},
|
3171
|
+
{
|
3172
|
+
"name": "longhandProperties",
|
3173
|
+
"description": "Parsed longhand components of this property if it is a shorthand.\nThis field will be empty if the given property is not a shorthand.",
|
3174
|
+
"experimental": true,
|
3175
|
+
"optional": true,
|
3176
|
+
"type": "array",
|
3177
|
+
"items": {
|
3178
|
+
"$ref": "CSSProperty"
|
3179
|
+
}
|
3170
3180
|
}
|
3171
3181
|
]
|
3172
3182
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -1537,6 +1537,9 @@ experimental domain CSS
|
|
1537
1537
|
optional boolean disabled
|
1538
1538
|
# The entire property range in the enclosing style declaration (if available).
|
1539
1539
|
optional SourceRange range
|
1540
|
+
# Parsed longhand components of this property if it is a shorthand.
|
1541
|
+
# This field will be empty if the given property is not a shorthand.
|
1542
|
+
experimental optional array of CSSProperty longhandProperties
|
1540
1543
|
|
1541
1544
|
# CSS media rule descriptor.
|
1542
1545
|
type CSSMedia extends object
|
package/types/protocol.d.ts
CHANGED
@@ -4431,6 +4431,11 @@ export namespace Protocol {
|
|
4431
4431
|
* The entire property range in the enclosing style declaration (if available).
|
4432
4432
|
*/
|
4433
4433
|
range?: SourceRange;
|
4434
|
+
/**
|
4435
|
+
* Parsed longhand components of this property if it is a shorthand.
|
4436
|
+
* This field will be empty if the given property is not a shorthand.
|
4437
|
+
*/
|
4438
|
+
longhandProperties?: CSSProperty[];
|
4434
4439
|
}
|
4435
4440
|
|
4436
4441
|
export const enum CSSMediaSource {
|