devtools-protocol 0.0.1122837 → 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
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1122837",
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
@@ -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
  /**