rustenium-cdp-definitions 0.1.1

Generated Chrome DevTools Protocol type definitions for Rustenium
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
use serde::{Deserialize, Serialize};
#[doc = "Inserts a new rule with the given `ruleText` in a stylesheet with given `styleSheetId`, at the\nposition specified by `location`.\n[addRule](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-addRule)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct AddRuleParams {
    #[doc = "The css style sheet identifier where a new rule should be inserted."]
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
    #[doc = "The text of a new rule."]
    #[serde(rename = "ruleText")]
    pub rule_text: String,
    #[doc = "Text position of a new rule in the target style sheet."]
    #[serde(rename = "location")]
    pub location: super::types::SourceRange,
    #[doc = "NodeId for the DOM node in whose context custom property declarations for registered properties should be\nvalidated. If omitted, declarations in the new rule text can only be validated statically, which may produce\nincorrect results if the declaration contains a var() for example."]
    #[serde(rename = "nodeForPropertySyntaxValidation")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub node_for_property_syntax_validation: Option<crate::browser_protocol::dom::types::NodeId>,
}
impl AddRuleParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
        rule_text: impl Into<String>,
        location: impl Into<super::types::SourceRange>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
            rule_text: rule_text.into(),
            location: location.into(),
            node_for_property_syntax_validation: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum AddRuleMethod {
    #[serde(rename = "CSS.addRule")]
    AddRule,
}
#[doc = "Inserts a new rule with the given `ruleText` in a stylesheet with given `styleSheetId`, at the\nposition specified by `location`.\n[addRule](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-addRule)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct AddRule {
    pub method: AddRuleMethod,
    pub params: AddRuleParams,
}
impl AddRule {
    pub const IDENTIFIER: &'static str = "CSS.addRule";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for AddRule {
    type Result = super::results::AddRuleResult;
}
#[doc = "Returns all class names from specified stylesheet.\n[collectClassNames](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-collectClassNames)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct CollectClassNamesParams {
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
}
impl CollectClassNamesParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum CollectClassNamesMethod {
    #[serde(rename = "CSS.collectClassNames")]
    CollectClassNames,
}
#[doc = "Returns all class names from specified stylesheet.\n[collectClassNames](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-collectClassNames)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct CollectClassNames {
    pub method: CollectClassNamesMethod,
    pub params: CollectClassNamesParams,
}
impl CollectClassNames {
    pub const IDENTIFIER: &'static str = "CSS.collectClassNames";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for CollectClassNames {
    type Result = super::results::CollectClassNamesResult;
}
#[doc = "Creates a new special \"via-inspector\" stylesheet in the frame with given `frameId`.\n[createStyleSheet](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-createStyleSheet)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct CreateStyleSheetParams {
    #[doc = "Identifier of the frame where \"via-inspector\" stylesheet should be created."]
    #[serde(rename = "frameId")]
    pub frame_id: crate::browser_protocol::page::types::FrameId,
    #[doc = "If true, creates a new stylesheet for every call. If false,\nreturns a stylesheet previously created by a call with force=false\nfor the frame's document if it exists or creates a new stylesheet\n(default: false)."]
    #[serde(rename = "force")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub force: Option<bool>,
}
impl CreateStyleSheetParams {
    pub fn new(frame_id: impl Into<crate::browser_protocol::page::types::FrameId>) -> Self {
        Self {
            frame_id: frame_id.into(),
            force: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum CreateStyleSheetMethod {
    #[serde(rename = "CSS.createStyleSheet")]
    CreateStyleSheet,
}
#[doc = "Creates a new special \"via-inspector\" stylesheet in the frame with given `frameId`.\n[createStyleSheet](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-createStyleSheet)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct CreateStyleSheet {
    pub method: CreateStyleSheetMethod,
    pub params: CreateStyleSheetParams,
}
impl CreateStyleSheet {
    pub const IDENTIFIER: &'static str = "CSS.createStyleSheet";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for CreateStyleSheet {
    type Result = super::results::CreateStyleSheetResult;
}
#[doc = "Disables the CSS agent for the given page.\n[disable](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-disable)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DisableParams {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum DisableMethod {
    #[serde(rename = "CSS.disable")]
    Disable,
}
#[doc = "Disables the CSS agent for the given page.\n[disable](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-disable)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Disable {
    pub method: DisableMethod,
    pub params: DisableParams,
}
impl Disable {
    pub const IDENTIFIER: &'static str = "CSS.disable";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for Disable {
    type Result = super::results::DisableResult;
}
#[doc = "Enables the CSS agent for the given page. Clients should not assume that the CSS agent has been\nenabled until the result of this command is received.\n[enable](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-enable)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct EnableParams {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum EnableMethod {
    #[serde(rename = "CSS.enable")]
    Enable,
}
#[doc = "Enables the CSS agent for the given page. Clients should not assume that the CSS agent has been\nenabled until the result of this command is received.\n[enable](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-enable)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Enable {
    pub method: EnableMethod,
    pub params: EnableParams,
}
impl Enable {
    pub const IDENTIFIER: &'static str = "CSS.enable";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for Enable {
    type Result = super::results::EnableResult;
}
#[doc = "Ensures that the given node will have specified pseudo-classes whenever its style is computed by\nthe browser.\n[forcePseudoState](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-forcePseudoState)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ForcePseudoStateParams {
    #[doc = "The element id for which to force the pseudo state."]
    #[serde(rename = "nodeId")]
    pub node_id: crate::browser_protocol::dom::types::NodeId,
    #[doc = "Element pseudo classes to force when computing the element's style."]
    #[serde(rename = "forcedPseudoClasses")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub forced_pseudo_classes: Vec<String>,
}
impl ForcePseudoStateParams {
    pub fn new(
        node_id: impl Into<crate::browser_protocol::dom::types::NodeId>,
        forced_pseudo_classes: Vec<String>,
    ) -> Self {
        Self {
            node_id: node_id.into(),
            forced_pseudo_classes,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum ForcePseudoStateMethod {
    #[serde(rename = "CSS.forcePseudoState")]
    ForcePseudoState,
}
#[doc = "Ensures that the given node will have specified pseudo-classes whenever its style is computed by\nthe browser.\n[forcePseudoState](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-forcePseudoState)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ForcePseudoState {
    pub method: ForcePseudoStateMethod,
    pub params: ForcePseudoStateParams,
}
impl ForcePseudoState {
    pub const IDENTIFIER: &'static str = "CSS.forcePseudoState";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for ForcePseudoState {
    type Result = super::results::ForcePseudoStateResult;
}
#[doc = "Ensures that the given node is in its starting-style state.\n[forceStartingStyle](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-forceStartingStyle)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ForceStartingStyleParams {
    #[doc = "The element id for which to force the starting-style state."]
    #[serde(rename = "nodeId")]
    pub node_id: crate::browser_protocol::dom::types::NodeId,
    #[doc = "Boolean indicating if this is on or off."]
    #[serde(rename = "forced")]
    pub forced: bool,
}
impl ForceStartingStyleParams {
    pub fn new(
        node_id: impl Into<crate::browser_protocol::dom::types::NodeId>,
        forced: impl Into<bool>,
    ) -> Self {
        Self {
            node_id: node_id.into(),
            forced: forced.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum ForceStartingStyleMethod {
    #[serde(rename = "CSS.forceStartingStyle")]
    ForceStartingStyle,
}
#[doc = "Ensures that the given node is in its starting-style state.\n[forceStartingStyle](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-forceStartingStyle)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ForceStartingStyle {
    pub method: ForceStartingStyleMethod,
    pub params: ForceStartingStyleParams,
}
impl ForceStartingStyle {
    pub const IDENTIFIER: &'static str = "CSS.forceStartingStyle";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for ForceStartingStyle {
    type Result = super::results::ForceStartingStyleResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetBackgroundColorsParams {
    #[doc = "Id of the node to get background colors for."]
    #[serde(rename = "nodeId")]
    pub node_id: crate::browser_protocol::dom::types::NodeId,
}
impl GetBackgroundColorsParams {
    pub fn new(node_id: impl Into<crate::browser_protocol::dom::types::NodeId>) -> Self {
        Self {
            node_id: node_id.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetBackgroundColorsMethod {
    #[serde(rename = "CSS.getBackgroundColors")]
    GetBackgroundColors,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetBackgroundColors {
    pub method: GetBackgroundColorsMethod,
    pub params: GetBackgroundColorsParams,
}
impl GetBackgroundColors {
    pub const IDENTIFIER: &'static str = "CSS.getBackgroundColors";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetBackgroundColors {
    type Result = super::results::GetBackgroundColorsResult;
}
#[doc = "Returns the computed style for a DOM node identified by `nodeId`.\n[getComputedStyleForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getComputedStyleForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetComputedStyleForNodeParams {
    #[serde(rename = "nodeId")]
    pub node_id: crate::browser_protocol::dom::types::NodeId,
}
impl GetComputedStyleForNodeParams {
    pub fn new(node_id: impl Into<crate::browser_protocol::dom::types::NodeId>) -> Self {
        Self {
            node_id: node_id.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetComputedStyleForNodeMethod {
    #[serde(rename = "CSS.getComputedStyleForNode")]
    GetComputedStyleForNode,
}
#[doc = "Returns the computed style for a DOM node identified by `nodeId`.\n[getComputedStyleForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getComputedStyleForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetComputedStyleForNode {
    pub method: GetComputedStyleForNodeMethod,
    pub params: GetComputedStyleForNodeParams,
}
impl GetComputedStyleForNode {
    pub const IDENTIFIER: &'static str = "CSS.getComputedStyleForNode";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetComputedStyleForNode {
    type Result = super::results::GetComputedStyleForNodeResult;
}
#[doc = "Resolve the specified values in the context of the provided element.\nFor example, a value of '1em' is evaluated according to the computed\n'font-size' of the element and a value 'calc(1px + 2px)' will be\nresolved to '3px'.\nIf the `propertyName` was specified the `values` are resolved as if\nthey were property's declaration. If a value cannot be parsed according\nto the provided property syntax, the value is parsed using combined\nsyntax as if null `propertyName` was provided. If the value cannot be\nresolved even then, return the provided value without any changes.\nNote: this function currently does not resolve CSS random() function,\nit returns unmodified random() function parts.`\n[resolveValues](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-resolveValues)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ResolveValuesParams {
    #[doc = "Cascade-dependent keywords (revert/revert-layer) do not work."]
    #[serde(rename = "values")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub values: Vec<String>,
    #[doc = "Id of the node in whose context the expression is evaluated"]
    #[serde(rename = "nodeId")]
    pub node_id: crate::browser_protocol::dom::types::NodeId,
    #[doc = "Only longhands and custom property names are accepted."]
    #[serde(rename = "propertyName")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub property_name: Option<String>,
    #[doc = "Pseudo element type, only works for pseudo elements that generate\nelements in the tree, such as ::before and ::after."]
    #[serde(rename = "pseudoType")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub pseudo_type: Option<crate::browser_protocol::dom::types::PseudoType>,
    #[doc = "Pseudo element custom ident."]
    #[serde(rename = "pseudoIdentifier")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub pseudo_identifier: Option<String>,
}
impl ResolveValuesParams {
    pub fn new(
        values: Vec<String>,
        node_id: impl Into<crate::browser_protocol::dom::types::NodeId>,
    ) -> Self {
        Self {
            values,
            node_id: node_id.into(),
            property_name: None,
            pseudo_type: None,
            pseudo_identifier: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum ResolveValuesMethod {
    #[serde(rename = "CSS.resolveValues")]
    ResolveValues,
}
#[doc = "Resolve the specified values in the context of the provided element.\nFor example, a value of '1em' is evaluated according to the computed\n'font-size' of the element and a value 'calc(1px + 2px)' will be\nresolved to '3px'.\nIf the `propertyName` was specified the `values` are resolved as if\nthey were property's declaration. If a value cannot be parsed according\nto the provided property syntax, the value is parsed using combined\nsyntax as if null `propertyName` was provided. If the value cannot be\nresolved even then, return the provided value without any changes.\nNote: this function currently does not resolve CSS random() function,\nit returns unmodified random() function parts.`\n[resolveValues](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-resolveValues)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ResolveValues {
    pub method: ResolveValuesMethod,
    pub params: ResolveValuesParams,
}
impl ResolveValues {
    pub const IDENTIFIER: &'static str = "CSS.resolveValues";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for ResolveValues {
    type Result = super::results::ResolveValuesResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetLonghandPropertiesParams {
    #[serde(rename = "shorthandName")]
    pub shorthand_name: String,
    #[serde(rename = "value")]
    pub value: String,
}
impl GetLonghandPropertiesParams {
    pub fn new(shorthand_name: impl Into<String>, value: impl Into<String>) -> Self {
        Self {
            shorthand_name: shorthand_name.into(),
            value: value.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetLonghandPropertiesMethod {
    #[serde(rename = "CSS.getLonghandProperties")]
    GetLonghandProperties,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetLonghandProperties {
    pub method: GetLonghandPropertiesMethod,
    pub params: GetLonghandPropertiesParams,
}
impl GetLonghandProperties {
    pub const IDENTIFIER: &'static str = "CSS.getLonghandProperties";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetLonghandProperties {
    type Result = super::results::GetLonghandPropertiesResult;
}
#[doc = "Returns the styles defined inline (explicitly in the \"style\" attribute and implicitly, using DOM\nattributes) for a DOM node identified by `nodeId`.\n[getInlineStylesForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getInlineStylesForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetInlineStylesForNodeParams {
    #[serde(rename = "nodeId")]
    pub node_id: crate::browser_protocol::dom::types::NodeId,
}
impl GetInlineStylesForNodeParams {
    pub fn new(node_id: impl Into<crate::browser_protocol::dom::types::NodeId>) -> Self {
        Self {
            node_id: node_id.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetInlineStylesForNodeMethod {
    #[serde(rename = "CSS.getInlineStylesForNode")]
    GetInlineStylesForNode,
}
#[doc = "Returns the styles defined inline (explicitly in the \"style\" attribute and implicitly, using DOM\nattributes) for a DOM node identified by `nodeId`.\n[getInlineStylesForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getInlineStylesForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetInlineStylesForNode {
    pub method: GetInlineStylesForNodeMethod,
    pub params: GetInlineStylesForNodeParams,
}
impl GetInlineStylesForNode {
    pub const IDENTIFIER: &'static str = "CSS.getInlineStylesForNode";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetInlineStylesForNode {
    type Result = super::results::GetInlineStylesForNodeResult;
}
#[doc = "Returns the styles coming from animations & transitions\nincluding the animation & transition styles coming from inheritance chain.\n[getAnimatedStylesForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getAnimatedStylesForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetAnimatedStylesForNodeParams {
    #[serde(rename = "nodeId")]
    pub node_id: crate::browser_protocol::dom::types::NodeId,
}
impl GetAnimatedStylesForNodeParams {
    pub fn new(node_id: impl Into<crate::browser_protocol::dom::types::NodeId>) -> Self {
        Self {
            node_id: node_id.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetAnimatedStylesForNodeMethod {
    #[serde(rename = "CSS.getAnimatedStylesForNode")]
    GetAnimatedStylesForNode,
}
#[doc = "Returns the styles coming from animations & transitions\nincluding the animation & transition styles coming from inheritance chain.\n[getAnimatedStylesForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getAnimatedStylesForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetAnimatedStylesForNode {
    pub method: GetAnimatedStylesForNodeMethod,
    pub params: GetAnimatedStylesForNodeParams,
}
impl GetAnimatedStylesForNode {
    pub const IDENTIFIER: &'static str = "CSS.getAnimatedStylesForNode";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetAnimatedStylesForNode {
    type Result = super::results::GetAnimatedStylesForNodeResult;
}
#[doc = "Returns requested styles for a DOM node identified by `nodeId`.\n[getMatchedStylesForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMatchedStylesForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetMatchedStylesForNodeParams {
    #[serde(rename = "nodeId")]
    pub node_id: crate::browser_protocol::dom::types::NodeId,
}
impl GetMatchedStylesForNodeParams {
    pub fn new(node_id: impl Into<crate::browser_protocol::dom::types::NodeId>) -> Self {
        Self {
            node_id: node_id.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetMatchedStylesForNodeMethod {
    #[serde(rename = "CSS.getMatchedStylesForNode")]
    GetMatchedStylesForNode,
}
#[doc = "Returns requested styles for a DOM node identified by `nodeId`.\n[getMatchedStylesForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMatchedStylesForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetMatchedStylesForNode {
    pub method: GetMatchedStylesForNodeMethod,
    pub params: GetMatchedStylesForNodeParams,
}
impl GetMatchedStylesForNode {
    pub const IDENTIFIER: &'static str = "CSS.getMatchedStylesForNode";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetMatchedStylesForNode {
    type Result = super::results::GetMatchedStylesForNodeResult;
}
#[doc = "Returns the values of the default UA-defined environment variables used in env()\n[getEnvironmentVariables](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getEnvironmentVariables)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetEnvironmentVariablesParams {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetEnvironmentVariablesMethod {
    #[serde(rename = "CSS.getEnvironmentVariables")]
    GetEnvironmentVariables,
}
#[doc = "Returns the values of the default UA-defined environment variables used in env()\n[getEnvironmentVariables](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getEnvironmentVariables)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetEnvironmentVariables {
    pub method: GetEnvironmentVariablesMethod,
    pub params: GetEnvironmentVariablesParams,
}
impl GetEnvironmentVariables {
    pub const IDENTIFIER: &'static str = "CSS.getEnvironmentVariables";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetEnvironmentVariables {
    type Result = super::results::GetEnvironmentVariablesResult;
}
#[doc = "Returns all media queries parsed by the rendering engine.\n[getMediaQueries](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMediaQueries)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetMediaQueriesParams {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetMediaQueriesMethod {
    #[serde(rename = "CSS.getMediaQueries")]
    GetMediaQueries,
}
#[doc = "Returns all media queries parsed by the rendering engine.\n[getMediaQueries](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMediaQueries)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetMediaQueries {
    pub method: GetMediaQueriesMethod,
    pub params: GetMediaQueriesParams,
}
impl GetMediaQueries {
    pub const IDENTIFIER: &'static str = "CSS.getMediaQueries";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetMediaQueries {
    type Result = super::results::GetMediaQueriesResult;
}
#[doc = "Requests information about platform fonts which we used to render child TextNodes in the given\nnode.\n[getPlatformFontsForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getPlatformFontsForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetPlatformFontsForNodeParams {
    #[serde(rename = "nodeId")]
    pub node_id: crate::browser_protocol::dom::types::NodeId,
}
impl GetPlatformFontsForNodeParams {
    pub fn new(node_id: impl Into<crate::browser_protocol::dom::types::NodeId>) -> Self {
        Self {
            node_id: node_id.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetPlatformFontsForNodeMethod {
    #[serde(rename = "CSS.getPlatformFontsForNode")]
    GetPlatformFontsForNode,
}
#[doc = "Requests information about platform fonts which we used to render child TextNodes in the given\nnode.\n[getPlatformFontsForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getPlatformFontsForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetPlatformFontsForNode {
    pub method: GetPlatformFontsForNodeMethod,
    pub params: GetPlatformFontsForNodeParams,
}
impl GetPlatformFontsForNode {
    pub const IDENTIFIER: &'static str = "CSS.getPlatformFontsForNode";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetPlatformFontsForNode {
    type Result = super::results::GetPlatformFontsForNodeResult;
}
#[doc = "Returns the current textual content for a stylesheet.\n[getStyleSheetText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getStyleSheetText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetStyleSheetTextParams {
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
}
impl GetStyleSheetTextParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetStyleSheetTextMethod {
    #[serde(rename = "CSS.getStyleSheetText")]
    GetStyleSheetText,
}
#[doc = "Returns the current textual content for a stylesheet.\n[getStyleSheetText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getStyleSheetText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetStyleSheetText {
    pub method: GetStyleSheetTextMethod,
    pub params: GetStyleSheetTextParams,
}
impl GetStyleSheetText {
    pub const IDENTIFIER: &'static str = "CSS.getStyleSheetText";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetStyleSheetText {
    type Result = super::results::GetStyleSheetTextResult;
}
#[doc = "Returns all layers parsed by the rendering engine for the tree scope of a node.\nGiven a DOM element identified by nodeId, getLayersForNode returns the root\nlayer for the nearest ancestor document or shadow root. The layer root contains\nthe full layer tree for the tree scope and their ordering.\n[getLayersForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getLayersForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetLayersForNodeParams {
    #[serde(rename = "nodeId")]
    pub node_id: crate::browser_protocol::dom::types::NodeId,
}
impl GetLayersForNodeParams {
    pub fn new(node_id: impl Into<crate::browser_protocol::dom::types::NodeId>) -> Self {
        Self {
            node_id: node_id.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetLayersForNodeMethod {
    #[serde(rename = "CSS.getLayersForNode")]
    GetLayersForNode,
}
#[doc = "Returns all layers parsed by the rendering engine for the tree scope of a node.\nGiven a DOM element identified by nodeId, getLayersForNode returns the root\nlayer for the nearest ancestor document or shadow root. The layer root contains\nthe full layer tree for the tree scope and their ordering.\n[getLayersForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getLayersForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetLayersForNode {
    pub method: GetLayersForNodeMethod,
    pub params: GetLayersForNodeParams,
}
impl GetLayersForNode {
    pub const IDENTIFIER: &'static str = "CSS.getLayersForNode";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetLayersForNode {
    type Result = super::results::GetLayersForNodeResult;
}
#[doc = "Given a CSS selector text and a style sheet ID, getLocationForSelector\nreturns an array of locations of the CSS selector in the style sheet.\n[getLocationForSelector](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getLocationForSelector)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetLocationForSelectorParams {
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
    #[serde(rename = "selectorText")]
    pub selector_text: String,
}
impl GetLocationForSelectorParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
        selector_text: impl Into<String>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
            selector_text: selector_text.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GetLocationForSelectorMethod {
    #[serde(rename = "CSS.getLocationForSelector")]
    GetLocationForSelector,
}
#[doc = "Given a CSS selector text and a style sheet ID, getLocationForSelector\nreturns an array of locations of the CSS selector in the style sheet.\n[getLocationForSelector](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getLocationForSelector)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct GetLocationForSelector {
    pub method: GetLocationForSelectorMethod,
    pub params: GetLocationForSelectorParams,
}
impl GetLocationForSelector {
    pub const IDENTIFIER: &'static str = "CSS.getLocationForSelector";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for GetLocationForSelector {
    type Result = super::results::GetLocationForSelectorResult;
}
#[doc = "Starts tracking the given node for the computed style updates\nand whenever the computed style is updated for node, it queues\na `computedStyleUpdated` event with throttling.\nThere can only be 1 node tracked for computed style updates\nso passing a new node id removes tracking from the previous node.\nPass `undefined` to disable tracking.\n[trackComputedStyleUpdatesForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-trackComputedStyleUpdatesForNode)"]
#[derive(Debug, Clone, PartialEq, Default, Serialize, Deserialize)]
pub struct TrackComputedStyleUpdatesForNodeParams {
    #[serde(rename = "nodeId")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub node_id: Option<crate::browser_protocol::dom::types::NodeId>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum TrackComputedStyleUpdatesForNodeMethod {
    #[serde(rename = "CSS.trackComputedStyleUpdatesForNode")]
    TrackComputedStyleUpdatesForNode,
}
#[doc = "Starts tracking the given node for the computed style updates\nand whenever the computed style is updated for node, it queues\na `computedStyleUpdated` event with throttling.\nThere can only be 1 node tracked for computed style updates\nso passing a new node id removes tracking from the previous node.\nPass `undefined` to disable tracking.\n[trackComputedStyleUpdatesForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-trackComputedStyleUpdatesForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct TrackComputedStyleUpdatesForNode {
    pub method: TrackComputedStyleUpdatesForNodeMethod,
    pub params: TrackComputedStyleUpdatesForNodeParams,
}
impl TrackComputedStyleUpdatesForNode {
    pub const IDENTIFIER: &'static str = "CSS.trackComputedStyleUpdatesForNode";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for TrackComputedStyleUpdatesForNode {
    type Result = super::results::TrackComputedStyleUpdatesForNodeResult;
}
#[doc = "Starts tracking the given computed styles for updates. The specified array of properties\nreplaces the one previously specified. Pass empty array to disable tracking.\nUse takeComputedStyleUpdates to retrieve the list of nodes that had properties modified.\nThe changes to computed style properties are only tracked for nodes pushed to the front-end\nby the DOM agent. If no changes to the tracked properties occur after the node has been pushed\nto the front-end, no updates will be issued for the node.\n[trackComputedStyleUpdates](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-trackComputedStyleUpdates)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct TrackComputedStyleUpdatesParams {
    #[serde(rename = "propertiesToTrack")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub properties_to_track: Vec<super::types::CssComputedStyleProperty>,
}
impl TrackComputedStyleUpdatesParams {
    pub fn new(properties_to_track: Vec<super::types::CssComputedStyleProperty>) -> Self {
        Self {
            properties_to_track,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum TrackComputedStyleUpdatesMethod {
    #[serde(rename = "CSS.trackComputedStyleUpdates")]
    TrackComputedStyleUpdates,
}
#[doc = "Starts tracking the given computed styles for updates. The specified array of properties\nreplaces the one previously specified. Pass empty array to disable tracking.\nUse takeComputedStyleUpdates to retrieve the list of nodes that had properties modified.\nThe changes to computed style properties are only tracked for nodes pushed to the front-end\nby the DOM agent. If no changes to the tracked properties occur after the node has been pushed\nto the front-end, no updates will be issued for the node.\n[trackComputedStyleUpdates](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-trackComputedStyleUpdates)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct TrackComputedStyleUpdates {
    pub method: TrackComputedStyleUpdatesMethod,
    pub params: TrackComputedStyleUpdatesParams,
}
impl TrackComputedStyleUpdates {
    pub const IDENTIFIER: &'static str = "CSS.trackComputedStyleUpdates";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for TrackComputedStyleUpdates {
    type Result = super::results::TrackComputedStyleUpdatesResult;
}
#[doc = "Polls the next batch of computed style updates.\n[takeComputedStyleUpdates](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeComputedStyleUpdates)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct TakeComputedStyleUpdatesParams {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum TakeComputedStyleUpdatesMethod {
    #[serde(rename = "CSS.takeComputedStyleUpdates")]
    TakeComputedStyleUpdates,
}
#[doc = "Polls the next batch of computed style updates.\n[takeComputedStyleUpdates](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeComputedStyleUpdates)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct TakeComputedStyleUpdates {
    pub method: TakeComputedStyleUpdatesMethod,
    pub params: TakeComputedStyleUpdatesParams,
}
impl TakeComputedStyleUpdates {
    pub const IDENTIFIER: &'static str = "CSS.takeComputedStyleUpdates";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for TakeComputedStyleUpdates {
    type Result = super::results::TakeComputedStyleUpdatesResult;
}
#[doc = "Find a rule with the given active property for the given node and set the new value for this\nproperty\n[setEffectivePropertyValueForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setEffectivePropertyValueForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetEffectivePropertyValueForNodeParams {
    #[doc = "The element id for which to set property."]
    #[serde(rename = "nodeId")]
    pub node_id: crate::browser_protocol::dom::types::NodeId,
    #[serde(rename = "propertyName")]
    pub property_name: String,
    #[serde(rename = "value")]
    pub value: String,
}
impl SetEffectivePropertyValueForNodeParams {
    pub fn new(
        node_id: impl Into<crate::browser_protocol::dom::types::NodeId>,
        property_name: impl Into<String>,
        value: impl Into<String>,
    ) -> Self {
        Self {
            node_id: node_id.into(),
            property_name: property_name.into(),
            value: value.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetEffectivePropertyValueForNodeMethod {
    #[serde(rename = "CSS.setEffectivePropertyValueForNode")]
    SetEffectivePropertyValueForNode,
}
#[doc = "Find a rule with the given active property for the given node and set the new value for this\nproperty\n[setEffectivePropertyValueForNode](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setEffectivePropertyValueForNode)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetEffectivePropertyValueForNode {
    pub method: SetEffectivePropertyValueForNodeMethod,
    pub params: SetEffectivePropertyValueForNodeParams,
}
impl SetEffectivePropertyValueForNode {
    pub const IDENTIFIER: &'static str = "CSS.setEffectivePropertyValueForNode";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetEffectivePropertyValueForNode {
    type Result = super::results::SetEffectivePropertyValueForNodeResult;
}
#[doc = "Modifies the property rule property name.\n[setPropertyRulePropertyName](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setPropertyRulePropertyName)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetPropertyRulePropertyNameParams {
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
    #[serde(rename = "range")]
    pub range: super::types::SourceRange,
    #[serde(rename = "propertyName")]
    pub property_name: String,
}
impl SetPropertyRulePropertyNameParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
        range: impl Into<super::types::SourceRange>,
        property_name: impl Into<String>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
            range: range.into(),
            property_name: property_name.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetPropertyRulePropertyNameMethod {
    #[serde(rename = "CSS.setPropertyRulePropertyName")]
    SetPropertyRulePropertyName,
}
#[doc = "Modifies the property rule property name.\n[setPropertyRulePropertyName](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setPropertyRulePropertyName)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetPropertyRulePropertyName {
    pub method: SetPropertyRulePropertyNameMethod,
    pub params: SetPropertyRulePropertyNameParams,
}
impl SetPropertyRulePropertyName {
    pub const IDENTIFIER: &'static str = "CSS.setPropertyRulePropertyName";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetPropertyRulePropertyName {
    type Result = super::results::SetPropertyRulePropertyNameResult;
}
#[doc = "Modifies the keyframe rule key text.\n[setKeyframeKey](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setKeyframeKey)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetKeyframeKeyParams {
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
    #[serde(rename = "range")]
    pub range: super::types::SourceRange,
    #[serde(rename = "keyText")]
    pub key_text: String,
}
impl SetKeyframeKeyParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
        range: impl Into<super::types::SourceRange>,
        key_text: impl Into<String>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
            range: range.into(),
            key_text: key_text.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetKeyframeKeyMethod {
    #[serde(rename = "CSS.setKeyframeKey")]
    SetKeyframeKey,
}
#[doc = "Modifies the keyframe rule key text.\n[setKeyframeKey](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setKeyframeKey)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetKeyframeKey {
    pub method: SetKeyframeKeyMethod,
    pub params: SetKeyframeKeyParams,
}
impl SetKeyframeKey {
    pub const IDENTIFIER: &'static str = "CSS.setKeyframeKey";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetKeyframeKey {
    type Result = super::results::SetKeyframeKeyResult;
}
#[doc = "Modifies the rule selector.\n[setMediaText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setMediaText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetMediaTextParams {
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
    #[serde(rename = "range")]
    pub range: super::types::SourceRange,
    #[serde(rename = "text")]
    pub text: String,
}
impl SetMediaTextParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
        range: impl Into<super::types::SourceRange>,
        text: impl Into<String>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
            range: range.into(),
            text: text.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetMediaTextMethod {
    #[serde(rename = "CSS.setMediaText")]
    SetMediaText,
}
#[doc = "Modifies the rule selector.\n[setMediaText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setMediaText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetMediaText {
    pub method: SetMediaTextMethod,
    pub params: SetMediaTextParams,
}
impl SetMediaText {
    pub const IDENTIFIER: &'static str = "CSS.setMediaText";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetMediaText {
    type Result = super::results::SetMediaTextResult;
}
#[doc = "Modifies the expression of a container query.\n[setContainerQueryText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setContainerQueryText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetContainerQueryTextParams {
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
    #[serde(rename = "range")]
    pub range: super::types::SourceRange,
    #[serde(rename = "text")]
    pub text: String,
}
impl SetContainerQueryTextParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
        range: impl Into<super::types::SourceRange>,
        text: impl Into<String>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
            range: range.into(),
            text: text.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetContainerQueryTextMethod {
    #[serde(rename = "CSS.setContainerQueryText")]
    SetContainerQueryText,
}
#[doc = "Modifies the expression of a container query.\n[setContainerQueryText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setContainerQueryText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetContainerQueryText {
    pub method: SetContainerQueryTextMethod,
    pub params: SetContainerQueryTextParams,
}
impl SetContainerQueryText {
    pub const IDENTIFIER: &'static str = "CSS.setContainerQueryText";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetContainerQueryText {
    type Result = super::results::SetContainerQueryTextResult;
}
#[doc = "Modifies the expression of a supports at-rule.\n[setSupportsText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setSupportsText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetSupportsTextParams {
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
    #[serde(rename = "range")]
    pub range: super::types::SourceRange,
    #[serde(rename = "text")]
    pub text: String,
}
impl SetSupportsTextParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
        range: impl Into<super::types::SourceRange>,
        text: impl Into<String>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
            range: range.into(),
            text: text.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetSupportsTextMethod {
    #[serde(rename = "CSS.setSupportsText")]
    SetSupportsText,
}
#[doc = "Modifies the expression of a supports at-rule.\n[setSupportsText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setSupportsText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetSupportsText {
    pub method: SetSupportsTextMethod,
    pub params: SetSupportsTextParams,
}
impl SetSupportsText {
    pub const IDENTIFIER: &'static str = "CSS.setSupportsText";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetSupportsText {
    type Result = super::results::SetSupportsTextResult;
}
#[doc = "Modifies the expression of a scope at-rule.\n[setScopeText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setScopeText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetScopeTextParams {
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
    #[serde(rename = "range")]
    pub range: super::types::SourceRange,
    #[serde(rename = "text")]
    pub text: String,
}
impl SetScopeTextParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
        range: impl Into<super::types::SourceRange>,
        text: impl Into<String>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
            range: range.into(),
            text: text.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetScopeTextMethod {
    #[serde(rename = "CSS.setScopeText")]
    SetScopeText,
}
#[doc = "Modifies the expression of a scope at-rule.\n[setScopeText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setScopeText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetScopeText {
    pub method: SetScopeTextMethod,
    pub params: SetScopeTextParams,
}
impl SetScopeText {
    pub const IDENTIFIER: &'static str = "CSS.setScopeText";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetScopeText {
    type Result = super::results::SetScopeTextResult;
}
#[doc = "Modifies the rule selector.\n[setRuleSelector](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setRuleSelector)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetRuleSelectorParams {
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
    #[serde(rename = "range")]
    pub range: super::types::SourceRange,
    #[serde(rename = "selector")]
    pub selector: String,
}
impl SetRuleSelectorParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
        range: impl Into<super::types::SourceRange>,
        selector: impl Into<String>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
            range: range.into(),
            selector: selector.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetRuleSelectorMethod {
    #[serde(rename = "CSS.setRuleSelector")]
    SetRuleSelector,
}
#[doc = "Modifies the rule selector.\n[setRuleSelector](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setRuleSelector)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetRuleSelector {
    pub method: SetRuleSelectorMethod,
    pub params: SetRuleSelectorParams,
}
impl SetRuleSelector {
    pub const IDENTIFIER: &'static str = "CSS.setRuleSelector";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetRuleSelector {
    type Result = super::results::SetRuleSelectorResult;
}
#[doc = "Sets the new stylesheet text.\n[setStyleSheetText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleSheetText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetStyleSheetTextParams {
    #[serde(rename = "styleSheetId")]
    pub style_sheet_id: crate::browser_protocol::dom::types::StyleSheetId,
    #[serde(rename = "text")]
    pub text: String,
}
impl SetStyleSheetTextParams {
    pub fn new(
        style_sheet_id: impl Into<crate::browser_protocol::dom::types::StyleSheetId>,
        text: impl Into<String>,
    ) -> Self {
        Self {
            style_sheet_id: style_sheet_id.into(),
            text: text.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetStyleSheetTextMethod {
    #[serde(rename = "CSS.setStyleSheetText")]
    SetStyleSheetText,
}
#[doc = "Sets the new stylesheet text.\n[setStyleSheetText](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleSheetText)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetStyleSheetText {
    pub method: SetStyleSheetTextMethod,
    pub params: SetStyleSheetTextParams,
}
impl SetStyleSheetText {
    pub const IDENTIFIER: &'static str = "CSS.setStyleSheetText";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetStyleSheetText {
    type Result = super::results::SetStyleSheetTextResult;
}
#[doc = "Applies specified style edits one after another in the given order.\n[setStyleTexts](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleTexts)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetStyleTextsParams {
    #[serde(rename = "edits")]
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub edits: Vec<super::types::StyleDeclarationEdit>,
    #[doc = "NodeId for the DOM node in whose context custom property declarations for registered properties should be\nvalidated. If omitted, declarations in the new rule text can only be validated statically, which may produce\nincorrect results if the declaration contains a var() for example."]
    #[serde(rename = "nodeForPropertySyntaxValidation")]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub node_for_property_syntax_validation: Option<crate::browser_protocol::dom::types::NodeId>,
}
impl SetStyleTextsParams {
    pub fn new(edits: Vec<super::types::StyleDeclarationEdit>) -> Self {
        Self {
            edits,
            node_for_property_syntax_validation: None,
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetStyleTextsMethod {
    #[serde(rename = "CSS.setStyleTexts")]
    SetStyleTexts,
}
#[doc = "Applies specified style edits one after another in the given order.\n[setStyleTexts](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleTexts)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetStyleTexts {
    pub method: SetStyleTextsMethod,
    pub params: SetStyleTextsParams,
}
impl SetStyleTexts {
    pub const IDENTIFIER: &'static str = "CSS.setStyleTexts";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetStyleTexts {
    type Result = super::results::SetStyleTextsResult;
}
#[doc = "Enables the selector recording.\n[startRuleUsageTracking](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-startRuleUsageTracking)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct StartRuleUsageTrackingParams {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum StartRuleUsageTrackingMethod {
    #[serde(rename = "CSS.startRuleUsageTracking")]
    StartRuleUsageTracking,
}
#[doc = "Enables the selector recording.\n[startRuleUsageTracking](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-startRuleUsageTracking)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct StartRuleUsageTracking {
    pub method: StartRuleUsageTrackingMethod,
    pub params: StartRuleUsageTrackingParams,
}
impl StartRuleUsageTracking {
    pub const IDENTIFIER: &'static str = "CSS.startRuleUsageTracking";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for StartRuleUsageTracking {
    type Result = super::results::StartRuleUsageTrackingResult;
}
#[doc = "Stop tracking rule usage and return the list of rules that were used since last call to\n`takeCoverageDelta` (or since start of coverage instrumentation).\n[stopRuleUsageTracking](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-stopRuleUsageTracking)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct StopRuleUsageTrackingParams {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum StopRuleUsageTrackingMethod {
    #[serde(rename = "CSS.stopRuleUsageTracking")]
    StopRuleUsageTracking,
}
#[doc = "Stop tracking rule usage and return the list of rules that were used since last call to\n`takeCoverageDelta` (or since start of coverage instrumentation).\n[stopRuleUsageTracking](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-stopRuleUsageTracking)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct StopRuleUsageTracking {
    pub method: StopRuleUsageTrackingMethod,
    pub params: StopRuleUsageTrackingParams,
}
impl StopRuleUsageTracking {
    pub const IDENTIFIER: &'static str = "CSS.stopRuleUsageTracking";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for StopRuleUsageTracking {
    type Result = super::results::StopRuleUsageTrackingResult;
}
#[doc = "Obtain list of rules that became used since last call to this method (or since start of coverage\ninstrumentation).\n[takeCoverageDelta](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeCoverageDelta)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct TakeCoverageDeltaParams {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum TakeCoverageDeltaMethod {
    #[serde(rename = "CSS.takeCoverageDelta")]
    TakeCoverageDelta,
}
#[doc = "Obtain list of rules that became used since last call to this method (or since start of coverage\ninstrumentation).\n[takeCoverageDelta](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeCoverageDelta)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct TakeCoverageDelta {
    pub method: TakeCoverageDeltaMethod,
    pub params: TakeCoverageDeltaParams,
}
impl TakeCoverageDelta {
    pub const IDENTIFIER: &'static str = "CSS.takeCoverageDelta";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for TakeCoverageDelta {
    type Result = super::results::TakeCoverageDeltaResult;
}
#[doc = "Enables/disables rendering of local CSS fonts (enabled by default).\n[setLocalFontsEnabled](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setLocalFontsEnabled)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetLocalFontsEnabledParams {
    #[doc = "Whether rendering of local fonts is enabled."]
    #[serde(rename = "enabled")]
    pub enabled: bool,
}
impl SetLocalFontsEnabledParams {
    pub fn new(enabled: impl Into<bool>) -> Self {
        Self {
            enabled: enabled.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetLocalFontsEnabledMethod {
    #[serde(rename = "CSS.setLocalFontsEnabled")]
    SetLocalFontsEnabled,
}
#[doc = "Enables/disables rendering of local CSS fonts (enabled by default).\n[setLocalFontsEnabled](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setLocalFontsEnabled)"]
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetLocalFontsEnabled {
    pub method: SetLocalFontsEnabledMethod,
    pub params: SetLocalFontsEnabledParams,
}
impl SetLocalFontsEnabled {
    pub const IDENTIFIER: &'static str = "CSS.setLocalFontsEnabled";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetLocalFontsEnabled {
    type Result = super::results::SetLocalFontsEnabledResult;
}
group_enum ! (CssCommands { AddRule (AddRule) , CollectClassNames (CollectClassNames) , CreateStyleSheet (CreateStyleSheet) , Disable (Disable) , Enable (Enable) , ForcePseudoState (ForcePseudoState) , ForceStartingStyle (ForceStartingStyle) , GetBackgroundColors (GetBackgroundColors) , GetComputedStyleForNode (GetComputedStyleForNode) , ResolveValues (ResolveValues) , GetLonghandProperties (GetLonghandProperties) , GetInlineStylesForNode (GetInlineStylesForNode) , GetAnimatedStylesForNode (GetAnimatedStylesForNode) , GetMatchedStylesForNode (GetMatchedStylesForNode) , GetEnvironmentVariables (GetEnvironmentVariables) , GetMediaQueries (GetMediaQueries) , GetPlatformFontsForNode (GetPlatformFontsForNode) , GetStyleSheetText (GetStyleSheetText) , GetLayersForNode (GetLayersForNode) , GetLocationForSelector (GetLocationForSelector) , TrackComputedStyleUpdatesForNode (TrackComputedStyleUpdatesForNode) , TrackComputedStyleUpdates (TrackComputedStyleUpdates) , TakeComputedStyleUpdates (TakeComputedStyleUpdates) , SetEffectivePropertyValueForNode (SetEffectivePropertyValueForNode) , SetPropertyRulePropertyName (SetPropertyRulePropertyName) , SetKeyframeKey (SetKeyframeKey) , SetMediaText (SetMediaText) , SetContainerQueryText (SetContainerQueryText) , SetSupportsText (SetSupportsText) , SetScopeText (SetScopeText) , SetRuleSelector (SetRuleSelector) , SetStyleSheetText (SetStyleSheetText) , SetStyleTexts (SetStyleTexts) , StartRuleUsageTracking (StartRuleUsageTracking) , StopRuleUsageTracking (StopRuleUsageTracking) , TakeCoverageDelta (TakeCoverageDelta) , SetLocalFontsEnabled (SetLocalFontsEnabled) } + identifiable);