devtools-protocol 0.0.1121538 → 0.0.1122837
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 +52 -0
- package/json/js_protocol.json +2 -1
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +20 -0
- package/pdl/js_protocol.pdl +1 -0
- package/types/protocol.d.ts +36 -1
@@ -3531,6 +3531,49 @@
|
|
3531
3531
|
}
|
3532
3532
|
]
|
3533
3533
|
},
|
3534
|
+
{
|
3535
|
+
"id": "CSSTryRule",
|
3536
|
+
"description": "CSS try rule representation.",
|
3537
|
+
"type": "object",
|
3538
|
+
"properties": [
|
3539
|
+
{
|
3540
|
+
"name": "styleSheetId",
|
3541
|
+
"description": "The css style sheet identifier (absent for user agent stylesheet and user-specified\nstylesheet rules) this rule came from.",
|
3542
|
+
"optional": true,
|
3543
|
+
"$ref": "StyleSheetId"
|
3544
|
+
},
|
3545
|
+
{
|
3546
|
+
"name": "origin",
|
3547
|
+
"description": "Parent stylesheet's origin.",
|
3548
|
+
"$ref": "StyleSheetOrigin"
|
3549
|
+
},
|
3550
|
+
{
|
3551
|
+
"name": "style",
|
3552
|
+
"description": "Associated style declaration.",
|
3553
|
+
"optional": true,
|
3554
|
+
"$ref": "CSSStyle"
|
3555
|
+
}
|
3556
|
+
]
|
3557
|
+
},
|
3558
|
+
{
|
3559
|
+
"id": "CSSPositionFallbackRule",
|
3560
|
+
"description": "CSS position-fallback rule representation.",
|
3561
|
+
"type": "object",
|
3562
|
+
"properties": [
|
3563
|
+
{
|
3564
|
+
"name": "name",
|
3565
|
+
"$ref": "Value"
|
3566
|
+
},
|
3567
|
+
{
|
3568
|
+
"name": "tryRules",
|
3569
|
+
"description": "List of keyframes.",
|
3570
|
+
"type": "array",
|
3571
|
+
"items": {
|
3572
|
+
"$ref": "CSSTryRule"
|
3573
|
+
}
|
3574
|
+
}
|
3575
|
+
]
|
3576
|
+
},
|
3534
3577
|
{
|
3535
3578
|
"id": "CSSKeyframesRule",
|
3536
3579
|
"description": "CSS keyframes rule representation.",
|
@@ -3840,6 +3883,15 @@
|
|
3840
3883
|
"$ref": "CSSKeyframesRule"
|
3841
3884
|
}
|
3842
3885
|
},
|
3886
|
+
{
|
3887
|
+
"name": "cssPositionFallbackRules",
|
3888
|
+
"description": "A list of CSS position fallbacks matching this node.",
|
3889
|
+
"optional": true,
|
3890
|
+
"type": "array",
|
3891
|
+
"items": {
|
3892
|
+
"$ref": "CSSPositionFallbackRule"
|
3893
|
+
}
|
3894
|
+
},
|
3843
3895
|
{
|
3844
3896
|
"name": "parentLayoutNodeId",
|
3845
3897
|
"description": "Id of the first parent element that does not have display: contents.",
|
package/json/js_protocol.json
CHANGED
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -1669,6 +1669,24 @@ experimental domain CSS
|
|
1669
1669
|
# Available variation settings (a.k.a. "axes").
|
1670
1670
|
optional array of FontVariationAxis fontVariationAxes
|
1671
1671
|
|
1672
|
+
# CSS try rule representation.
|
1673
|
+
type CSSTryRule extends object
|
1674
|
+
properties
|
1675
|
+
# The css style sheet identifier (absent for user agent stylesheet and user-specified
|
1676
|
+
# stylesheet rules) this rule came from.
|
1677
|
+
optional StyleSheetId styleSheetId
|
1678
|
+
# Parent stylesheet's origin.
|
1679
|
+
StyleSheetOrigin origin
|
1680
|
+
# Associated style declaration.
|
1681
|
+
optional CSSStyle style
|
1682
|
+
|
1683
|
+
# CSS position-fallback rule representation.
|
1684
|
+
type CSSPositionFallbackRule extends object
|
1685
|
+
properties
|
1686
|
+
Value name
|
1687
|
+
# List of keyframes.
|
1688
|
+
array of CSSTryRule tryRules
|
1689
|
+
|
1672
1690
|
# CSS keyframes rule representation.
|
1673
1691
|
type CSSKeyframesRule extends object
|
1674
1692
|
properties
|
@@ -1802,6 +1820,8 @@ experimental domain CSS
|
|
1802
1820
|
optional array of InheritedPseudoElementMatches inheritedPseudoElements
|
1803
1821
|
# A list of CSS keyframed animations matching this node.
|
1804
1822
|
optional array of CSSKeyframesRule cssKeyframesRules
|
1823
|
+
# A list of CSS position fallbacks matching this node.
|
1824
|
+
optional array of CSSPositionFallbackRule cssPositionFallbackRules
|
1805
1825
|
# Id of the first parent element that does not have display: contents.
|
1806
1826
|
experimental optional DOM.NodeId parentLayoutNodeId
|
1807
1827
|
|
package/pdl/js_protocol.pdl
CHANGED
package/types/protocol.d.ts
CHANGED
@@ -838,6 +838,7 @@ export namespace Protocol {
|
|
838
838
|
Other = 'other',
|
839
839
|
PromiseRejection = 'promiseRejection',
|
840
840
|
XHR = 'XHR',
|
841
|
+
Step = 'step',
|
841
842
|
}
|
842
843
|
|
843
844
|
/**
|
@@ -851,7 +852,7 @@ export namespace Protocol {
|
|
851
852
|
/**
|
852
853
|
* Pause reason. (PausedEventReason enum)
|
853
854
|
*/
|
854
|
-
reason: ('ambiguous' | 'assert' | 'CSPViolation' | 'debugCommand' | 'DOM' | 'EventListener' | 'exception' | 'instrumentation' | 'OOM' | 'other' | 'promiseRejection' | 'XHR');
|
855
|
+
reason: ('ambiguous' | 'assert' | 'CSPViolation' | 'debugCommand' | 'DOM' | 'EventListener' | 'exception' | 'instrumentation' | 'OOM' | 'other' | 'promiseRejection' | 'XHR' | 'step');
|
855
856
|
/**
|
856
857
|
* Object containing break-specific auxiliary properties.
|
857
858
|
*/
|
@@ -4717,6 +4718,36 @@ export namespace Protocol {
|
|
4717
4718
|
fontVariationAxes?: FontVariationAxis[];
|
4718
4719
|
}
|
4719
4720
|
|
4721
|
+
/**
|
4722
|
+
* CSS try rule representation.
|
4723
|
+
*/
|
4724
|
+
export interface CSSTryRule {
|
4725
|
+
/**
|
4726
|
+
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
4727
|
+
* stylesheet rules) this rule came from.
|
4728
|
+
*/
|
4729
|
+
styleSheetId?: StyleSheetId;
|
4730
|
+
/**
|
4731
|
+
* Parent stylesheet's origin.
|
4732
|
+
*/
|
4733
|
+
origin: StyleSheetOrigin;
|
4734
|
+
/**
|
4735
|
+
* Associated style declaration.
|
4736
|
+
*/
|
4737
|
+
style?: CSSStyle;
|
4738
|
+
}
|
4739
|
+
|
4740
|
+
/**
|
4741
|
+
* CSS position-fallback rule representation.
|
4742
|
+
*/
|
4743
|
+
export interface CSSPositionFallbackRule {
|
4744
|
+
name: Value;
|
4745
|
+
/**
|
4746
|
+
* List of keyframes.
|
4747
|
+
*/
|
4748
|
+
tryRules: CSSTryRule[];
|
4749
|
+
}
|
4750
|
+
|
4720
4751
|
/**
|
4721
4752
|
* CSS keyframes rule representation.
|
4722
4753
|
*/
|
@@ -4916,6 +4947,10 @@ export namespace Protocol {
|
|
4916
4947
|
* A list of CSS keyframed animations matching this node.
|
4917
4948
|
*/
|
4918
4949
|
cssKeyframesRules?: CSSKeyframesRule[];
|
4950
|
+
/**
|
4951
|
+
* A list of CSS position fallbacks matching this node.
|
4952
|
+
*/
|
4953
|
+
cssPositionFallbackRules?: CSSPositionFallbackRule[];
|
4919
4954
|
/**
|
4920
4955
|
* Id of the first parent element that does not have display: contents.
|
4921
4956
|
*/
|