devtools-protocol 0.0.1335233 → 0.0.1336433
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 +0 -30
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +0 -9
- package/types/protocol.d.ts +0 -15
@@ -4215,26 +4215,6 @@
|
|
4215
4215
|
}
|
4216
4216
|
]
|
4217
4217
|
},
|
4218
|
-
{
|
4219
|
-
"id": "CSSPositionFallbackRule",
|
4220
|
-
"description": "CSS position-fallback rule representation.",
|
4221
|
-
"deprecated": true,
|
4222
|
-
"type": "object",
|
4223
|
-
"properties": [
|
4224
|
-
{
|
4225
|
-
"name": "name",
|
4226
|
-
"$ref": "Value"
|
4227
|
-
},
|
4228
|
-
{
|
4229
|
-
"name": "tryRules",
|
4230
|
-
"description": "List of keyframes.",
|
4231
|
-
"type": "array",
|
4232
|
-
"items": {
|
4233
|
-
"$ref": "CSSTryRule"
|
4234
|
-
}
|
4235
|
-
}
|
4236
|
-
]
|
4237
|
-
},
|
4238
4218
|
{
|
4239
4219
|
"id": "CSSPositionTryRule",
|
4240
4220
|
"description": "CSS @position-try rule representation.",
|
@@ -4663,16 +4643,6 @@
|
|
4663
4643
|
"$ref": "CSSKeyframesRule"
|
4664
4644
|
}
|
4665
4645
|
},
|
4666
|
-
{
|
4667
|
-
"name": "cssPositionFallbackRules",
|
4668
|
-
"description": "A list of CSS position fallbacks matching this node.",
|
4669
|
-
"deprecated": true,
|
4670
|
-
"optional": true,
|
4671
|
-
"type": "array",
|
4672
|
-
"items": {
|
4673
|
-
"$ref": "CSSPositionFallbackRule"
|
4674
|
-
}
|
4675
|
-
},
|
4676
4646
|
{
|
4677
4647
|
"name": "cssPositionTryRules",
|
4678
4648
|
"description": "A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -2030,13 +2030,6 @@ experimental domain CSS
|
|
2030
2030
|
# Associated style declaration.
|
2031
2031
|
CSSStyle style
|
2032
2032
|
|
2033
|
-
# CSS position-fallback rule representation.
|
2034
|
-
deprecated type CSSPositionFallbackRule extends object
|
2035
|
-
properties
|
2036
|
-
Value name
|
2037
|
-
# List of keyframes.
|
2038
|
-
array of CSSTryRule tryRules
|
2039
|
-
|
2040
2033
|
# CSS @position-try rule representation.
|
2041
2034
|
type CSSPositionTryRule extends object
|
2042
2035
|
properties
|
@@ -2223,8 +2216,6 @@ experimental domain CSS
|
|
2223
2216
|
optional array of InheritedPseudoElementMatches inheritedPseudoElements
|
2224
2217
|
# A list of CSS keyframed animations matching this node.
|
2225
2218
|
optional array of CSSKeyframesRule cssKeyframesRules
|
2226
|
-
# A list of CSS position fallbacks matching this node.
|
2227
|
-
deprecated optional array of CSSPositionFallbackRule cssPositionFallbackRules
|
2228
2219
|
# A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
|
2229
2220
|
optional array of CSSPositionTryRule cssPositionTryRules
|
2230
2221
|
# Index of the active fallback in the applied position-try-fallback property,
|
package/types/protocol.d.ts
CHANGED
@@ -5144,17 +5144,6 @@ export namespace Protocol {
|
|
5144
5144
|
style: CSSStyle;
|
5145
5145
|
}
|
5146
5146
|
|
5147
|
-
/**
|
5148
|
-
* CSS position-fallback rule representation.
|
5149
|
-
*/
|
5150
|
-
export interface CSSPositionFallbackRule {
|
5151
|
-
name: Value;
|
5152
|
-
/**
|
5153
|
-
* List of keyframes.
|
5154
|
-
*/
|
5155
|
-
tryRules: CSSTryRule[];
|
5156
|
-
}
|
5157
|
-
|
5158
5147
|
/**
|
5159
5148
|
* CSS @position-try rule representation.
|
5160
5149
|
*/
|
@@ -5440,10 +5429,6 @@ export namespace Protocol {
|
|
5440
5429
|
* A list of CSS keyframed animations matching this node.
|
5441
5430
|
*/
|
5442
5431
|
cssKeyframesRules?: CSSKeyframesRule[];
|
5443
|
-
/**
|
5444
|
-
* A list of CSS position fallbacks matching this node.
|
5445
|
-
*/
|
5446
|
-
cssPositionFallbackRules?: CSSPositionFallbackRule[];
|
5447
5432
|
/**
|
5448
5433
|
* A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
|
5449
5434
|
*/
|