devtools-protocol 0.0.970581 → 0.0.970590
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.
@@ -3818,32 +3818,6 @@
|
|
3818
3818
|
}
|
3819
3819
|
]
|
3820
3820
|
},
|
3821
|
-
{
|
3822
|
-
"name": "setSupportsText",
|
3823
|
-
"description": "Modifies the expression of a supports at-rule.",
|
3824
|
-
"experimental": true,
|
3825
|
-
"parameters": [
|
3826
|
-
{
|
3827
|
-
"name": "styleSheetId",
|
3828
|
-
"$ref": "StyleSheetId"
|
3829
|
-
},
|
3830
|
-
{
|
3831
|
-
"name": "range",
|
3832
|
-
"$ref": "SourceRange"
|
3833
|
-
},
|
3834
|
-
{
|
3835
|
-
"name": "text",
|
3836
|
-
"type": "string"
|
3837
|
-
}
|
3838
|
-
],
|
3839
|
-
"returns": [
|
3840
|
-
{
|
3841
|
-
"name": "supports",
|
3842
|
-
"description": "The resulting CSS Supports rule after modification.",
|
3843
|
-
"$ref": "CSSSupports"
|
3844
|
-
}
|
3845
|
-
]
|
3846
|
-
},
|
3847
3821
|
{
|
3848
3822
|
"name": "setRuleSelector",
|
3849
3823
|
"description": "Modifies the rule selector.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -1792,16 +1792,6 @@ experimental domain CSS
|
|
1792
1792
|
# The resulting CSS container query rule after modification.
|
1793
1793
|
CSSContainerQuery containerQuery
|
1794
1794
|
|
1795
|
-
# Modifies the expression of a supports at-rule.
|
1796
|
-
experimental command setSupportsText
|
1797
|
-
parameters
|
1798
|
-
StyleSheetId styleSheetId
|
1799
|
-
SourceRange range
|
1800
|
-
string text
|
1801
|
-
returns
|
1802
|
-
# The resulting CSS Supports rule after modification.
|
1803
|
-
CSSSupports supports
|
1804
|
-
|
1805
1795
|
# Modifies the rule selector.
|
1806
1796
|
command setRuleSelector
|
1807
1797
|
parameters
|
@@ -1682,13 +1682,6 @@ export namespace ProtocolMapping {
|
|
1682
1682
|
paramsType: [Protocol.CSS.SetContainerQueryTextRequest];
|
1683
1683
|
returnType: Protocol.CSS.SetContainerQueryTextResponse;
|
1684
1684
|
};
|
1685
|
-
/**
|
1686
|
-
* Modifies the expression of a supports at-rule.
|
1687
|
-
*/
|
1688
|
-
'CSS.setSupportsText': {
|
1689
|
-
paramsType: [Protocol.CSS.SetSupportsTextRequest];
|
1690
|
-
returnType: Protocol.CSS.SetSupportsTextResponse;
|
1691
|
-
};
|
1692
1685
|
/**
|
1693
1686
|
* Modifies the rule selector.
|
1694
1687
|
*/
|
@@ -999,11 +999,6 @@ export namespace ProtocolProxyApi {
|
|
999
999
|
*/
|
1000
1000
|
setContainerQueryText(params: Protocol.CSS.SetContainerQueryTextRequest): Promise<Protocol.CSS.SetContainerQueryTextResponse>;
|
1001
1001
|
|
1002
|
-
/**
|
1003
|
-
* Modifies the expression of a supports at-rule.
|
1004
|
-
*/
|
1005
|
-
setSupportsText(params: Protocol.CSS.SetSupportsTextRequest): Promise<Protocol.CSS.SetSupportsTextResponse>;
|
1006
|
-
|
1007
1002
|
/**
|
1008
1003
|
* Modifies the rule selector.
|
1009
1004
|
*/
|
package/types/protocol.d.ts
CHANGED
@@ -4749,19 +4749,6 @@ export namespace Protocol {
|
|
4749
4749
|
containerQuery: CSSContainerQuery;
|
4750
4750
|
}
|
4751
4751
|
|
4752
|
-
export interface SetSupportsTextRequest {
|
4753
|
-
styleSheetId: StyleSheetId;
|
4754
|
-
range: SourceRange;
|
4755
|
-
text: string;
|
4756
|
-
}
|
4757
|
-
|
4758
|
-
export interface SetSupportsTextResponse {
|
4759
|
-
/**
|
4760
|
-
* The resulting CSS Supports rule after modification.
|
4761
|
-
*/
|
4762
|
-
supports: CSSSupports;
|
4763
|
-
}
|
4764
|
-
|
4765
4752
|
export interface SetRuleSelectorRequest {
|
4766
4753
|
styleSheetId: StyleSheetId;
|
4767
4754
|
range: SourceRange;
|