devtools-protocol 0.0.1116775 → 0.0.1119014
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.
@@ -2894,6 +2894,16 @@
|
|
2894
2894
|
"description": "Rule selector data.",
|
2895
2895
|
"$ref": "SelectorList"
|
2896
2896
|
},
|
2897
|
+
{
|
2898
|
+
"name": "nestingSelectors",
|
2899
|
+
"description": "Array of selectors from ancestor style rules, sorted by distance from the current rule.",
|
2900
|
+
"experimental": true,
|
2901
|
+
"optional": true,
|
2902
|
+
"type": "array",
|
2903
|
+
"items": {
|
2904
|
+
"type": "string"
|
2905
|
+
}
|
2906
|
+
},
|
2897
2907
|
{
|
2898
2908
|
"name": "origin",
|
2899
2909
|
"description": "Parent stylesheet's origin.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -1409,6 +1409,8 @@ experimental domain CSS
|
|
1409
1409
|
optional StyleSheetId styleSheetId
|
1410
1410
|
# Rule selector data.
|
1411
1411
|
SelectorList selectorList
|
1412
|
+
# Array of selectors from ancestor style rules, sorted by distance from the current rule.
|
1413
|
+
experimental optional array of string nestingSelectors
|
1412
1414
|
# Parent stylesheet's origin.
|
1413
1415
|
StyleSheetOrigin origin
|
1414
1416
|
# Associated style declaration.
|
package/types/protocol.d.ts
CHANGED
@@ -4254,6 +4254,10 @@ export namespace Protocol {
|
|
4254
4254
|
* Rule selector data.
|
4255
4255
|
*/
|
4256
4256
|
selectorList: SelectorList;
|
4257
|
+
/**
|
4258
|
+
* Array of selectors from ancestor style rules, sorted by distance from the current rule.
|
4259
|
+
*/
|
4260
|
+
nestingSelectors?: string[];
|
4257
4261
|
/**
|
4258
4262
|
* Parent stylesheet's origin.
|
4259
4263
|
*/
|