devtools-protocol 0.0.1547617 → 0.0.1548244
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.
- package/json/browser_protocol.json +0 -34
- package/package.json +1 -1
- package/pdl/domains/CSS.pdl +0 -16
- package/types/protocol.d.ts +0 -27
|
@@ -5150,34 +5150,6 @@
|
|
|
5150
5150
|
}
|
|
5151
5151
|
]
|
|
5152
5152
|
},
|
|
5153
|
-
{
|
|
5154
|
-
"id": "CSSFontPaletteValuesRule",
|
|
5155
|
-
"description": "CSS font-palette-values rule representation.",
|
|
5156
|
-
"type": "object",
|
|
5157
|
-
"properties": [
|
|
5158
|
-
{
|
|
5159
|
-
"name": "styleSheetId",
|
|
5160
|
-
"description": "The css style sheet identifier (absent for user agent stylesheet and user-specified\nstylesheet rules) this rule came from.",
|
|
5161
|
-
"optional": true,
|
|
5162
|
-
"$ref": "StyleSheetId"
|
|
5163
|
-
},
|
|
5164
|
-
{
|
|
5165
|
-
"name": "origin",
|
|
5166
|
-
"description": "Parent stylesheet's origin.",
|
|
5167
|
-
"$ref": "StyleSheetOrigin"
|
|
5168
|
-
},
|
|
5169
|
-
{
|
|
5170
|
-
"name": "fontPaletteName",
|
|
5171
|
-
"description": "Associated font palette name.",
|
|
5172
|
-
"$ref": "Value"
|
|
5173
|
-
},
|
|
5174
|
-
{
|
|
5175
|
-
"name": "style",
|
|
5176
|
-
"description": "Associated style declaration.",
|
|
5177
|
-
"$ref": "CSSStyle"
|
|
5178
|
-
}
|
|
5179
|
-
]
|
|
5180
|
-
},
|
|
5181
5153
|
{
|
|
5182
5154
|
"id": "CSSAtRule",
|
|
5183
5155
|
"description": "CSS generic @rule representation.",
|
|
@@ -5836,12 +5808,6 @@
|
|
|
5836
5808
|
"$ref": "CSSPropertyRegistration"
|
|
5837
5809
|
}
|
|
5838
5810
|
},
|
|
5839
|
-
{
|
|
5840
|
-
"name": "cssFontPaletteValuesRule",
|
|
5841
|
-
"description": "A font-palette-values rule matching this node.",
|
|
5842
|
-
"optional": true,
|
|
5843
|
-
"$ref": "CSSFontPaletteValuesRule"
|
|
5844
|
-
},
|
|
5845
5811
|
{
|
|
5846
5812
|
"name": "cssAtRules",
|
|
5847
5813
|
"description": "A list of simple @rules matching this node or its pseudo-elements.",
|
package/package.json
CHANGED
package/pdl/domains/CSS.pdl
CHANGED
|
@@ -500,20 +500,6 @@ experimental domain CSS
|
|
|
500
500
|
boolean inherits
|
|
501
501
|
string syntax
|
|
502
502
|
|
|
503
|
-
|
|
504
|
-
# CSS font-palette-values rule representation.
|
|
505
|
-
type CSSFontPaletteValuesRule extends object
|
|
506
|
-
properties
|
|
507
|
-
# The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
508
|
-
# stylesheet rules) this rule came from.
|
|
509
|
-
optional StyleSheetId styleSheetId
|
|
510
|
-
# Parent stylesheet's origin.
|
|
511
|
-
StyleSheetOrigin origin
|
|
512
|
-
# Associated font palette name.
|
|
513
|
-
Value fontPaletteName
|
|
514
|
-
# Associated style declaration.
|
|
515
|
-
CSSStyle style
|
|
516
|
-
|
|
517
503
|
# CSS generic @rule representation.
|
|
518
504
|
type CSSAtRule extends object
|
|
519
505
|
properties
|
|
@@ -800,8 +786,6 @@ experimental domain CSS
|
|
|
800
786
|
optional array of CSSPropertyRule cssPropertyRules
|
|
801
787
|
# A list of CSS property registrations matching this node.
|
|
802
788
|
optional array of CSSPropertyRegistration cssPropertyRegistrations
|
|
803
|
-
# A font-palette-values rule matching this node.
|
|
804
|
-
optional CSSFontPaletteValuesRule cssFontPaletteValuesRule
|
|
805
789
|
# A list of simple @rules matching this node or its pseudo-elements.
|
|
806
790
|
optional array of CSSAtRule cssAtRules
|
|
807
791
|
# Id of the first parent element that does not have display: contents.
|
package/types/protocol.d.ts
CHANGED
|
@@ -5777,29 +5777,6 @@ export namespace Protocol {
|
|
|
5777
5777
|
syntax: string;
|
|
5778
5778
|
}
|
|
5779
5779
|
|
|
5780
|
-
/**
|
|
5781
|
-
* CSS font-palette-values rule representation.
|
|
5782
|
-
*/
|
|
5783
|
-
export interface CSSFontPaletteValuesRule {
|
|
5784
|
-
/**
|
|
5785
|
-
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
5786
|
-
* stylesheet rules) this rule came from.
|
|
5787
|
-
*/
|
|
5788
|
-
styleSheetId?: StyleSheetId;
|
|
5789
|
-
/**
|
|
5790
|
-
* Parent stylesheet's origin.
|
|
5791
|
-
*/
|
|
5792
|
-
origin: StyleSheetOrigin;
|
|
5793
|
-
/**
|
|
5794
|
-
* Associated font palette name.
|
|
5795
|
-
*/
|
|
5796
|
-
fontPaletteName: Value;
|
|
5797
|
-
/**
|
|
5798
|
-
* Associated style declaration.
|
|
5799
|
-
*/
|
|
5800
|
-
style: CSSStyle;
|
|
5801
|
-
}
|
|
5802
|
-
|
|
5803
5780
|
export const enum CSSAtRuleType {
|
|
5804
5781
|
FontFace = 'font-face',
|
|
5805
5782
|
FontFeatureValues = 'font-feature-values',
|
|
@@ -6240,10 +6217,6 @@ export namespace Protocol {
|
|
|
6240
6217
|
* A list of CSS property registrations matching this node.
|
|
6241
6218
|
*/
|
|
6242
6219
|
cssPropertyRegistrations?: CSSPropertyRegistration[];
|
|
6243
|
-
/**
|
|
6244
|
-
* A font-palette-values rule matching this node.
|
|
6245
|
-
*/
|
|
6246
|
-
cssFontPaletteValuesRule?: CSSFontPaletteValuesRule;
|
|
6247
6220
|
/**
|
|
6248
6221
|
* A list of simple @rules matching this node or its pseudo-elements.
|
|
6249
6222
|
*/
|