devtools-protocol 0.0.1122837 → 0.0.1126404
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
|
},
|
@@ -3550,7 +3555,6 @@
|
|
3550
3555
|
{
|
3551
3556
|
"name": "style",
|
3552
3557
|
"description": "Associated style declaration.",
|
3553
|
-
"optional": true,
|
3554
3558
|
"$ref": "CSSStyle"
|
3555
3559
|
}
|
3556
3560
|
]
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -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
|
@@ -1678,7 +1679,7 @@ experimental domain CSS
|
|
1678
1679
|
# Parent stylesheet's origin.
|
1679
1680
|
StyleSheetOrigin origin
|
1680
1681
|
# Associated style declaration.
|
1681
|
-
|
1682
|
+
CSSStyle style
|
1682
1683
|
|
1683
1684
|
# CSS position-fallback rule representation.
|
1684
1685
|
type CSSPositionFallbackRule extends object
|
package/types/protocol.d.ts
CHANGED
@@ -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
|
/**
|
@@ -4734,7 +4735,7 @@ export namespace Protocol {
|
|
4734
4735
|
/**
|
4735
4736
|
* Associated style declaration.
|
4736
4737
|
*/
|
4737
|
-
style
|
4738
|
+
style: CSSStyle;
|
4738
4739
|
}
|
4739
4740
|
|
4740
4741
|
/**
|