devtools-protocol 0.0.1122063 → 0.0.1124027

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.
@@ -1570,6 +1570,11 @@
1570
1570
  "name": "violatingNodeId",
1571
1571
  "optional": true,
1572
1572
  "$ref": "DOM.BackendNodeId"
1573
+ },
1574
+ {
1575
+ "name": "violatingNodeAttribute",
1576
+ "optional": true,
1577
+ "type": "string"
1573
1578
  }
1574
1579
  ]
1575
1580
  },
@@ -3531,6 +3536,49 @@
3531
3536
  }
3532
3537
  ]
3533
3538
  },
3539
+ {
3540
+ "id": "CSSTryRule",
3541
+ "description": "CSS try rule representation.",
3542
+ "type": "object",
3543
+ "properties": [
3544
+ {
3545
+ "name": "styleSheetId",
3546
+ "description": "The css style sheet identifier (absent for user agent stylesheet and user-specified\nstylesheet rules) this rule came from.",
3547
+ "optional": true,
3548
+ "$ref": "StyleSheetId"
3549
+ },
3550
+ {
3551
+ "name": "origin",
3552
+ "description": "Parent stylesheet's origin.",
3553
+ "$ref": "StyleSheetOrigin"
3554
+ },
3555
+ {
3556
+ "name": "style",
3557
+ "description": "Associated style declaration.",
3558
+ "optional": true,
3559
+ "$ref": "CSSStyle"
3560
+ }
3561
+ ]
3562
+ },
3563
+ {
3564
+ "id": "CSSPositionFallbackRule",
3565
+ "description": "CSS position-fallback rule representation.",
3566
+ "type": "object",
3567
+ "properties": [
3568
+ {
3569
+ "name": "name",
3570
+ "$ref": "Value"
3571
+ },
3572
+ {
3573
+ "name": "tryRules",
3574
+ "description": "List of keyframes.",
3575
+ "type": "array",
3576
+ "items": {
3577
+ "$ref": "CSSTryRule"
3578
+ }
3579
+ }
3580
+ ]
3581
+ },
3534
3582
  {
3535
3583
  "id": "CSSKeyframesRule",
3536
3584
  "description": "CSS keyframes rule representation.",
@@ -3840,6 +3888,15 @@
3840
3888
  "$ref": "CSSKeyframesRule"
3841
3889
  }
3842
3890
  },
3891
+ {
3892
+ "name": "cssPositionFallbackRules",
3893
+ "description": "A list of CSS position fallbacks matching this node.",
3894
+ "optional": true,
3895
+ "type": "array",
3896
+ "items": {
3897
+ "$ref": "CSSPositionFallbackRule"
3898
+ }
3899
+ },
3843
3900
  {
3844
3901
  "name": "parentLayoutNodeId",
3845
3902
  "description": "Id of the first parent element that does not have display: contents.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1122063",
3
+ "version": "0.0.1124027",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -765,6 +765,7 @@ experimental domain Audits
765
765
  GenericIssueErrorType errorType
766
766
  optional Page.FrameId frameId
767
767
  optional DOM.BackendNodeId violatingNodeId
768
+ optional string violatingNodeAttribute
768
769
 
769
770
  # This issue tracks information needed to print a deprecation message.
770
771
  # https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/third_party/blink/renderer/core/frame/deprecation/README.md
@@ -1669,6 +1670,24 @@ experimental domain CSS
1669
1670
  # Available variation settings (a.k.a. "axes").
1670
1671
  optional array of FontVariationAxis fontVariationAxes
1671
1672
 
1673
+ # CSS try rule representation.
1674
+ type CSSTryRule extends object
1675
+ properties
1676
+ # The css style sheet identifier (absent for user agent stylesheet and user-specified
1677
+ # stylesheet rules) this rule came from.
1678
+ optional StyleSheetId styleSheetId
1679
+ # Parent stylesheet's origin.
1680
+ StyleSheetOrigin origin
1681
+ # Associated style declaration.
1682
+ optional CSSStyle style
1683
+
1684
+ # CSS position-fallback rule representation.
1685
+ type CSSPositionFallbackRule extends object
1686
+ properties
1687
+ Value name
1688
+ # List of keyframes.
1689
+ array of CSSTryRule tryRules
1690
+
1672
1691
  # CSS keyframes rule representation.
1673
1692
  type CSSKeyframesRule extends object
1674
1693
  properties
@@ -1802,6 +1821,8 @@ experimental domain CSS
1802
1821
  optional array of InheritedPseudoElementMatches inheritedPseudoElements
1803
1822
  # A list of CSS keyframed animations matching this node.
1804
1823
  optional array of CSSKeyframesRule cssKeyframesRules
1824
+ # A list of CSS position fallbacks matching this node.
1825
+ optional array of CSSPositionFallbackRule cssPositionFallbackRules
1805
1826
  # Id of the first parent element that does not have display: contents.
1806
1827
  experimental optional DOM.NodeId parentLayoutNodeId
1807
1828
 
@@ -3456,6 +3456,7 @@ export namespace Protocol {
3456
3456
  errorType: GenericIssueErrorType;
3457
3457
  frameId?: Page.FrameId;
3458
3458
  violatingNodeId?: DOM.BackendNodeId;
3459
+ violatingNodeAttribute?: string;
3459
3460
  }
3460
3461
 
3461
3462
  /**
@@ -4718,6 +4719,36 @@ export namespace Protocol {
4718
4719
  fontVariationAxes?: FontVariationAxis[];
4719
4720
  }
4720
4721
 
4722
+ /**
4723
+ * CSS try rule representation.
4724
+ */
4725
+ export interface CSSTryRule {
4726
+ /**
4727
+ * The css style sheet identifier (absent for user agent stylesheet and user-specified
4728
+ * stylesheet rules) this rule came from.
4729
+ */
4730
+ styleSheetId?: StyleSheetId;
4731
+ /**
4732
+ * Parent stylesheet's origin.
4733
+ */
4734
+ origin: StyleSheetOrigin;
4735
+ /**
4736
+ * Associated style declaration.
4737
+ */
4738
+ style?: CSSStyle;
4739
+ }
4740
+
4741
+ /**
4742
+ * CSS position-fallback rule representation.
4743
+ */
4744
+ export interface CSSPositionFallbackRule {
4745
+ name: Value;
4746
+ /**
4747
+ * List of keyframes.
4748
+ */
4749
+ tryRules: CSSTryRule[];
4750
+ }
4751
+
4721
4752
  /**
4722
4753
  * CSS keyframes rule representation.
4723
4754
  */
@@ -4917,6 +4948,10 @@ export namespace Protocol {
4917
4948
  * A list of CSS keyframed animations matching this node.
4918
4949
  */
4919
4950
  cssKeyframesRules?: CSSKeyframesRule[];
4951
+ /**
4952
+ * A list of CSS position fallbacks matching this node.
4953
+ */
4954
+ cssPositionFallbackRules?: CSSPositionFallbackRule[];
4920
4955
  /**
4921
4956
  * Id of the first parent element that does not have display: contents.
4922
4957
  */