chrome-devtools-frontend 1.0.1650677 → 1.0.1652307
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/front_end/core/sdk/CSSMatchedStyles.ts +20 -4
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +94 -0
- package/front_end/generated/InspectorBackendCommands.ts +6 -3
- package/front_end/generated/SupportedCSSProperties.js +370 -6
- package/front_end/generated/protocol-mapping.d.ts +7 -0
- package/front_end/generated/protocol-proxy-api.d.ts +5 -0
- package/front_end/generated/protocol.ts +66 -7
- package/front_end/models/ai_assistance/AiAgent2.ts +3 -3
- package/front_end/models/ai_assistance/README.md +1 -1
- package/front_end/models/ai_assistance/tools/README.md +1 -1
- package/front_end/models/ai_assistance/tools/Tool.ts +1 -1
- package/front_end/models/ai_assistance/tools/ToolRegistry.ts +6 -6
- package/front_end/models/heap_snapshot/HeapSnapshotModel.ts +14 -0
- package/front_end/models/heap_snapshot/HeapSnapshotProxy.ts +4 -0
- package/front_end/models/javascript_metadata/NativeFunctions.js +4 -0
- package/front_end/panels/elements/CSSSpecificityBreakdown.ts +106 -0
- package/front_end/panels/elements/StylePropertiesSection.ts +40 -13
- package/front_end/panels/elements/StylePropertyTreeElement.ts +6 -5
- package/front_end/panels/elements/components/CSSQuery.ts +119 -4
- package/front_end/panels/elements/elements.ts +3 -0
- package/front_end/panels/elements/stylesSidebarPane.css +34 -0
- package/front_end/panels/layer_viewer/PaintProfilerView.ts +0 -3
- package/front_end/panels/sources/ScopeChainSidebarPane.ts +0 -12
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/package.json +1 -1
|
@@ -37,6 +37,13 @@ export const generatedProperties = [
|
|
|
37
37
|
"name": "-webkit-border-horizontal-spacing"
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
|
+
"devtools_keywords": [
|
|
41
|
+
"none",
|
|
42
|
+
"stretch",
|
|
43
|
+
"repeat",
|
|
44
|
+
"space",
|
|
45
|
+
"round"
|
|
46
|
+
],
|
|
40
47
|
"name": "-webkit-border-image"
|
|
41
48
|
},
|
|
42
49
|
{
|
|
@@ -144,6 +151,13 @@ export const generatedProperties = [
|
|
|
144
151
|
"name": "-webkit-locale"
|
|
145
152
|
},
|
|
146
153
|
{
|
|
154
|
+
"devtools_keywords": [
|
|
155
|
+
"none",
|
|
156
|
+
"stretch",
|
|
157
|
+
"repeat",
|
|
158
|
+
"space",
|
|
159
|
+
"round"
|
|
160
|
+
],
|
|
147
161
|
"longhands": [
|
|
148
162
|
"-webkit-mask-box-image-source",
|
|
149
163
|
"-webkit-mask-box-image-slice",
|
|
@@ -202,6 +216,10 @@ export const generatedProperties = [
|
|
|
202
216
|
},
|
|
203
217
|
{
|
|
204
218
|
"inherited": true,
|
|
219
|
+
"keywords": [
|
|
220
|
+
"before",
|
|
221
|
+
"after"
|
|
222
|
+
],
|
|
205
223
|
"name": "-webkit-ruby-position"
|
|
206
224
|
},
|
|
207
225
|
{
|
|
@@ -1050,6 +1068,29 @@ export const generatedProperties = [
|
|
|
1050
1068
|
"name": "backface-visibility"
|
|
1051
1069
|
},
|
|
1052
1070
|
{
|
|
1071
|
+
"devtools_keywords": [
|
|
1072
|
+
"none",
|
|
1073
|
+
"left",
|
|
1074
|
+
"right",
|
|
1075
|
+
"center",
|
|
1076
|
+
"top",
|
|
1077
|
+
"bottom",
|
|
1078
|
+
"repeat",
|
|
1079
|
+
"no-repeat",
|
|
1080
|
+
"repeat-x",
|
|
1081
|
+
"repeat-y",
|
|
1082
|
+
"round",
|
|
1083
|
+
"space",
|
|
1084
|
+
"scroll",
|
|
1085
|
+
"fixed",
|
|
1086
|
+
"local",
|
|
1087
|
+
"border-box",
|
|
1088
|
+
"padding-box",
|
|
1089
|
+
"content-box",
|
|
1090
|
+
"text",
|
|
1091
|
+
"border-area",
|
|
1092
|
+
"currentcolor"
|
|
1093
|
+
],
|
|
1053
1094
|
"longhands": [
|
|
1054
1095
|
"background-image",
|
|
1055
1096
|
"background-position-x",
|
|
@@ -1191,6 +1232,22 @@ export const generatedProperties = [
|
|
|
1191
1232
|
"name": "block-size"
|
|
1192
1233
|
},
|
|
1193
1234
|
{
|
|
1235
|
+
"devtools_keywords": [
|
|
1236
|
+
"none",
|
|
1237
|
+
"hidden",
|
|
1238
|
+
"inset",
|
|
1239
|
+
"groove",
|
|
1240
|
+
"outset",
|
|
1241
|
+
"ridge",
|
|
1242
|
+
"dotted",
|
|
1243
|
+
"dashed",
|
|
1244
|
+
"solid",
|
|
1245
|
+
"double",
|
|
1246
|
+
"thin",
|
|
1247
|
+
"medium",
|
|
1248
|
+
"thick",
|
|
1249
|
+
"currentcolor"
|
|
1250
|
+
],
|
|
1194
1251
|
"longhands": [
|
|
1195
1252
|
"border-top-color",
|
|
1196
1253
|
"border-top-style",
|
|
@@ -1876,6 +1933,11 @@ export const generatedProperties = [
|
|
|
1876
1933
|
},
|
|
1877
1934
|
{
|
|
1878
1935
|
"inherited": true,
|
|
1936
|
+
"keywords": [
|
|
1937
|
+
"normal",
|
|
1938
|
+
"light",
|
|
1939
|
+
"dark"
|
|
1940
|
+
],
|
|
1879
1941
|
"name": "color-scheme"
|
|
1880
1942
|
},
|
|
1881
1943
|
{
|
|
@@ -2072,6 +2134,9 @@ export const generatedProperties = [
|
|
|
2072
2134
|
"runtime_flag_status": "stable"
|
|
2073
2135
|
},
|
|
2074
2136
|
{
|
|
2137
|
+
"devtools_keywords": [
|
|
2138
|
+
"auto"
|
|
2139
|
+
],
|
|
2075
2140
|
"longhands": [
|
|
2076
2141
|
"column-width",
|
|
2077
2142
|
"column-count",
|
|
@@ -2089,8 +2154,7 @@ export const generatedProperties = [
|
|
|
2089
2154
|
"layout",
|
|
2090
2155
|
"style",
|
|
2091
2156
|
"paint",
|
|
2092
|
-
"inline-size"
|
|
2093
|
-
"block-size"
|
|
2157
|
+
"inline-size"
|
|
2094
2158
|
],
|
|
2095
2159
|
"name": "contain"
|
|
2096
2160
|
},
|
|
@@ -2126,6 +2190,9 @@ export const generatedProperties = [
|
|
|
2126
2190
|
"name": "contain-intrinsic-width"
|
|
2127
2191
|
},
|
|
2128
2192
|
{
|
|
2193
|
+
"devtools_keywords": [
|
|
2194
|
+
"none"
|
|
2195
|
+
],
|
|
2129
2196
|
"longhands": [
|
|
2130
2197
|
"container-name",
|
|
2131
2198
|
"container-type"
|
|
@@ -2694,6 +2761,9 @@ export const generatedProperties = [
|
|
|
2694
2761
|
},
|
|
2695
2762
|
{
|
|
2696
2763
|
"inherited": true,
|
|
2764
|
+
"keywords": [
|
|
2765
|
+
"none"
|
|
2766
|
+
],
|
|
2697
2767
|
"name": "fill"
|
|
2698
2768
|
},
|
|
2699
2769
|
{
|
|
@@ -2715,6 +2785,15 @@ export const generatedProperties = [
|
|
|
2715
2785
|
"name": "filter"
|
|
2716
2786
|
},
|
|
2717
2787
|
{
|
|
2788
|
+
"devtools_keywords": [
|
|
2789
|
+
"none",
|
|
2790
|
+
"auto",
|
|
2791
|
+
"content",
|
|
2792
|
+
"min-content",
|
|
2793
|
+
"max-content",
|
|
2794
|
+
"fit-content",
|
|
2795
|
+
"stretch"
|
|
2796
|
+
],
|
|
2718
2797
|
"longhands": [
|
|
2719
2798
|
"flex-grow",
|
|
2720
2799
|
"flex-shrink",
|
|
@@ -2797,6 +2876,7 @@ export const generatedProperties = [
|
|
|
2797
2876
|
"runtime_flag_status": "experimental"
|
|
2798
2877
|
},
|
|
2799
2878
|
{
|
|
2879
|
+
"devtools_keywords": [],
|
|
2800
2880
|
"inherited": true,
|
|
2801
2881
|
"longhands": [
|
|
2802
2882
|
"font-style",
|
|
@@ -2933,6 +3013,9 @@ export const generatedProperties = [
|
|
|
2933
3013
|
"name": "font-style"
|
|
2934
3014
|
},
|
|
2935
3015
|
{
|
|
3016
|
+
"devtools_keywords": [
|
|
3017
|
+
"none"
|
|
3018
|
+
],
|
|
2936
3019
|
"inherited": true,
|
|
2937
3020
|
"longhands": [
|
|
2938
3021
|
"font-synthesis-weight",
|
|
@@ -3115,6 +3198,9 @@ export const generatedProperties = [
|
|
|
3115
3198
|
"name": "gap"
|
|
3116
3199
|
},
|
|
3117
3200
|
{
|
|
3201
|
+
"devtools_keywords": [
|
|
3202
|
+
"none"
|
|
3203
|
+
],
|
|
3118
3204
|
"longhands": [
|
|
3119
3205
|
"grid-template-rows",
|
|
3120
3206
|
"grid-template-columns",
|
|
@@ -3228,6 +3314,9 @@ export const generatedProperties = [
|
|
|
3228
3314
|
"name": "grid-row-start"
|
|
3229
3315
|
},
|
|
3230
3316
|
{
|
|
3317
|
+
"devtools_keywords": [
|
|
3318
|
+
"none"
|
|
3319
|
+
],
|
|
3231
3320
|
"longhands": [
|
|
3232
3321
|
"grid-template-rows",
|
|
3233
3322
|
"grid-template-columns",
|
|
@@ -3681,6 +3770,20 @@ export const generatedProperties = [
|
|
|
3681
3770
|
"name": "marker-start"
|
|
3682
3771
|
},
|
|
3683
3772
|
{
|
|
3773
|
+
"devtools_keywords": [
|
|
3774
|
+
"none",
|
|
3775
|
+
"left",
|
|
3776
|
+
"right",
|
|
3777
|
+
"center",
|
|
3778
|
+
"top",
|
|
3779
|
+
"bottom",
|
|
3780
|
+
"subtract",
|
|
3781
|
+
"intersect",
|
|
3782
|
+
"exclude",
|
|
3783
|
+
"alpha",
|
|
3784
|
+
"luminance",
|
|
3785
|
+
"match-source"
|
|
3786
|
+
],
|
|
3684
3787
|
"longhands": [
|
|
3685
3788
|
"mask-image",
|
|
3686
3789
|
"-webkit-mask-position-x",
|
|
@@ -4333,7 +4436,43 @@ export const generatedProperties = [
|
|
|
4333
4436
|
"end",
|
|
4334
4437
|
"self-start",
|
|
4335
4438
|
"self-end",
|
|
4336
|
-
"all"
|
|
4439
|
+
"span-all",
|
|
4440
|
+
"span-left",
|
|
4441
|
+
"span-right",
|
|
4442
|
+
"span-x-start",
|
|
4443
|
+
"span-x-end",
|
|
4444
|
+
"self-x-start",
|
|
4445
|
+
"self-x-end",
|
|
4446
|
+
"span-self-x-start",
|
|
4447
|
+
"span-self-x-end",
|
|
4448
|
+
"span-top",
|
|
4449
|
+
"span-bottom",
|
|
4450
|
+
"span-y-start",
|
|
4451
|
+
"span-y-end",
|
|
4452
|
+
"self-y-start",
|
|
4453
|
+
"self-y-end",
|
|
4454
|
+
"span-self-y-start",
|
|
4455
|
+
"span-self-y-end",
|
|
4456
|
+
"block-start",
|
|
4457
|
+
"block-end",
|
|
4458
|
+
"span-block-start",
|
|
4459
|
+
"span-block-end",
|
|
4460
|
+
"inline-start",
|
|
4461
|
+
"inline-end",
|
|
4462
|
+
"span-inline-start",
|
|
4463
|
+
"span-inline-end",
|
|
4464
|
+
"self-block-start",
|
|
4465
|
+
"self-block-end",
|
|
4466
|
+
"span-self-block-start",
|
|
4467
|
+
"span-self-block-end",
|
|
4468
|
+
"self-inline-start",
|
|
4469
|
+
"self-inline-end",
|
|
4470
|
+
"span-self-inline-start",
|
|
4471
|
+
"span-self-inline-end",
|
|
4472
|
+
"span-start",
|
|
4473
|
+
"span-end",
|
|
4474
|
+
"span-self-start",
|
|
4475
|
+
"span-self-end"
|
|
4337
4476
|
],
|
|
4338
4477
|
"name": "position-area"
|
|
4339
4478
|
},
|
|
@@ -4449,6 +4588,9 @@ export const generatedProperties = [
|
|
|
4449
4588
|
"name": "right"
|
|
4450
4589
|
},
|
|
4451
4590
|
{
|
|
4591
|
+
"keywords": [
|
|
4592
|
+
"none"
|
|
4593
|
+
],
|
|
4452
4594
|
"name": "rotate"
|
|
4453
4595
|
},
|
|
4454
4596
|
{
|
|
@@ -4622,6 +4764,7 @@ export const generatedProperties = [
|
|
|
4622
4764
|
"inherited": true,
|
|
4623
4765
|
"keywords": [
|
|
4624
4766
|
"auto",
|
|
4767
|
+
"none",
|
|
4625
4768
|
"spaces"
|
|
4626
4769
|
],
|
|
4627
4770
|
"name": "ruby-overhang",
|
|
@@ -4776,6 +4919,9 @@ export const generatedProperties = [
|
|
|
4776
4919
|
"name": "ry"
|
|
4777
4920
|
},
|
|
4778
4921
|
{
|
|
4922
|
+
"keywords": [
|
|
4923
|
+
"none"
|
|
4924
|
+
],
|
|
4779
4925
|
"name": "scale"
|
|
4780
4926
|
},
|
|
4781
4927
|
{
|
|
@@ -5089,6 +5235,10 @@ export const generatedProperties = [
|
|
|
5089
5235
|
},
|
|
5090
5236
|
{
|
|
5091
5237
|
"inherited": true,
|
|
5238
|
+
"keywords": [
|
|
5239
|
+
"none",
|
|
5240
|
+
"context-stroke"
|
|
5241
|
+
],
|
|
5092
5242
|
"name": "stroke"
|
|
5093
5243
|
},
|
|
5094
5244
|
{
|
|
@@ -5335,6 +5485,11 @@ export const generatedProperties = [
|
|
|
5335
5485
|
},
|
|
5336
5486
|
{
|
|
5337
5487
|
"inherited": true,
|
|
5488
|
+
"keywords": [
|
|
5489
|
+
"none",
|
|
5490
|
+
"shrink",
|
|
5491
|
+
"grow"
|
|
5492
|
+
],
|
|
5338
5493
|
"name": "text-fit",
|
|
5339
5494
|
"runtime_flag": "CssTextFit",
|
|
5340
5495
|
"runtime_flag_status": "stable"
|
|
@@ -5647,6 +5802,9 @@ export const generatedProperties = [
|
|
|
5647
5802
|
"name": "transition-timing-function"
|
|
5648
5803
|
},
|
|
5649
5804
|
{
|
|
5805
|
+
"keywords": [
|
|
5806
|
+
"none"
|
|
5807
|
+
],
|
|
5650
5808
|
"name": "translate"
|
|
5651
5809
|
},
|
|
5652
5810
|
{
|
|
@@ -5709,6 +5867,9 @@ export const generatedProperties = [
|
|
|
5709
5867
|
"name": "vertical-align"
|
|
5710
5868
|
},
|
|
5711
5869
|
{
|
|
5870
|
+
"devtools_keywords": [
|
|
5871
|
+
"none"
|
|
5872
|
+
],
|
|
5712
5873
|
"longhands": [
|
|
5713
5874
|
"view-timeline-name",
|
|
5714
5875
|
"view-timeline-axis",
|
|
@@ -5857,6 +6018,15 @@ export const generatedPropertyValues = {
|
|
|
5857
6018
|
"none"
|
|
5858
6019
|
]
|
|
5859
6020
|
},
|
|
6021
|
+
"-webkit-border-image": {
|
|
6022
|
+
"values": [
|
|
6023
|
+
"none",
|
|
6024
|
+
"stretch",
|
|
6025
|
+
"repeat",
|
|
6026
|
+
"space",
|
|
6027
|
+
"round"
|
|
6028
|
+
]
|
|
6029
|
+
},
|
|
5860
6030
|
"-webkit-box-align": {
|
|
5861
6031
|
"values": [
|
|
5862
6032
|
"stretch",
|
|
@@ -5919,6 +6089,15 @@ export const generatedPropertyValues = {
|
|
|
5919
6089
|
"auto"
|
|
5920
6090
|
]
|
|
5921
6091
|
},
|
|
6092
|
+
"-webkit-mask-box-image": {
|
|
6093
|
+
"values": [
|
|
6094
|
+
"none",
|
|
6095
|
+
"stretch",
|
|
6096
|
+
"repeat",
|
|
6097
|
+
"space",
|
|
6098
|
+
"round"
|
|
6099
|
+
]
|
|
6100
|
+
},
|
|
5922
6101
|
"-webkit-mask-box-image-repeat": {
|
|
5923
6102
|
"values": [
|
|
5924
6103
|
"repeat",
|
|
@@ -5943,6 +6122,12 @@ export const generatedPropertyValues = {
|
|
|
5943
6122
|
"visual"
|
|
5944
6123
|
]
|
|
5945
6124
|
},
|
|
6125
|
+
"-webkit-ruby-position": {
|
|
6126
|
+
"values": [
|
|
6127
|
+
"before",
|
|
6128
|
+
"after"
|
|
6129
|
+
]
|
|
6130
|
+
},
|
|
5946
6131
|
"-webkit-text-combine": {
|
|
5947
6132
|
"values": [
|
|
5948
6133
|
"none",
|
|
@@ -6142,6 +6327,31 @@ export const generatedPropertyValues = {
|
|
|
6142
6327
|
"hidden"
|
|
6143
6328
|
]
|
|
6144
6329
|
},
|
|
6330
|
+
"background": {
|
|
6331
|
+
"values": [
|
|
6332
|
+
"none",
|
|
6333
|
+
"left",
|
|
6334
|
+
"right",
|
|
6335
|
+
"center",
|
|
6336
|
+
"top",
|
|
6337
|
+
"bottom",
|
|
6338
|
+
"repeat",
|
|
6339
|
+
"no-repeat",
|
|
6340
|
+
"repeat-x",
|
|
6341
|
+
"repeat-y",
|
|
6342
|
+
"round",
|
|
6343
|
+
"space",
|
|
6344
|
+
"scroll",
|
|
6345
|
+
"fixed",
|
|
6346
|
+
"local",
|
|
6347
|
+
"border-box",
|
|
6348
|
+
"padding-box",
|
|
6349
|
+
"content-box",
|
|
6350
|
+
"text",
|
|
6351
|
+
"border-area",
|
|
6352
|
+
"currentcolor"
|
|
6353
|
+
]
|
|
6354
|
+
},
|
|
6145
6355
|
"background-attachment": {
|
|
6146
6356
|
"values": [
|
|
6147
6357
|
"scroll",
|
|
@@ -6227,6 +6437,24 @@ export const generatedPropertyValues = {
|
|
|
6227
6437
|
"auto"
|
|
6228
6438
|
]
|
|
6229
6439
|
},
|
|
6440
|
+
"border": {
|
|
6441
|
+
"values": [
|
|
6442
|
+
"none",
|
|
6443
|
+
"hidden",
|
|
6444
|
+
"inset",
|
|
6445
|
+
"groove",
|
|
6446
|
+
"outset",
|
|
6447
|
+
"ridge",
|
|
6448
|
+
"dotted",
|
|
6449
|
+
"dashed",
|
|
6450
|
+
"solid",
|
|
6451
|
+
"double",
|
|
6452
|
+
"thin",
|
|
6453
|
+
"medium",
|
|
6454
|
+
"thick",
|
|
6455
|
+
"currentcolor"
|
|
6456
|
+
]
|
|
6457
|
+
},
|
|
6230
6458
|
"border-block-end-style": {
|
|
6231
6459
|
"values": [
|
|
6232
6460
|
"none",
|
|
@@ -6608,6 +6836,13 @@ export const generatedPropertyValues = {
|
|
|
6608
6836
|
"optimizequality"
|
|
6609
6837
|
]
|
|
6610
6838
|
},
|
|
6839
|
+
"color-scheme": {
|
|
6840
|
+
"values": [
|
|
6841
|
+
"normal",
|
|
6842
|
+
"light",
|
|
6843
|
+
"dark"
|
|
6844
|
+
]
|
|
6845
|
+
},
|
|
6611
6846
|
"column-count": {
|
|
6612
6847
|
"values": [
|
|
6613
6848
|
"auto"
|
|
@@ -6708,6 +6943,11 @@ export const generatedPropertyValues = {
|
|
|
6708
6943
|
"wrap"
|
|
6709
6944
|
]
|
|
6710
6945
|
},
|
|
6946
|
+
"columns": {
|
|
6947
|
+
"values": [
|
|
6948
|
+
"auto"
|
|
6949
|
+
]
|
|
6950
|
+
},
|
|
6711
6951
|
"contain": {
|
|
6712
6952
|
"values": [
|
|
6713
6953
|
"none",
|
|
@@ -6717,8 +6957,7 @@ export const generatedPropertyValues = {
|
|
|
6717
6957
|
"layout",
|
|
6718
6958
|
"style",
|
|
6719
6959
|
"paint",
|
|
6720
|
-
"inline-size"
|
|
6721
|
-
"block-size"
|
|
6960
|
+
"inline-size"
|
|
6722
6961
|
]
|
|
6723
6962
|
},
|
|
6724
6963
|
"contain-intrinsic-block-size": {
|
|
@@ -6741,6 +6980,11 @@ export const generatedPropertyValues = {
|
|
|
6741
6980
|
"none"
|
|
6742
6981
|
]
|
|
6743
6982
|
},
|
|
6983
|
+
"container": {
|
|
6984
|
+
"values": [
|
|
6985
|
+
"none"
|
|
6986
|
+
]
|
|
6987
|
+
},
|
|
6744
6988
|
"container-name": {
|
|
6745
6989
|
"values": [
|
|
6746
6990
|
"none"
|
|
@@ -7038,6 +7282,11 @@ export const generatedPropertyValues = {
|
|
|
7038
7282
|
"content"
|
|
7039
7283
|
]
|
|
7040
7284
|
},
|
|
7285
|
+
"fill": {
|
|
7286
|
+
"values": [
|
|
7287
|
+
"none"
|
|
7288
|
+
]
|
|
7289
|
+
},
|
|
7041
7290
|
"fill-rule": {
|
|
7042
7291
|
"values": [
|
|
7043
7292
|
"nonzero",
|
|
@@ -7049,6 +7298,17 @@ export const generatedPropertyValues = {
|
|
|
7049
7298
|
"none"
|
|
7050
7299
|
]
|
|
7051
7300
|
},
|
|
7301
|
+
"flex": {
|
|
7302
|
+
"values": [
|
|
7303
|
+
"none",
|
|
7304
|
+
"auto",
|
|
7305
|
+
"content",
|
|
7306
|
+
"min-content",
|
|
7307
|
+
"max-content",
|
|
7308
|
+
"fit-content",
|
|
7309
|
+
"stretch"
|
|
7310
|
+
]
|
|
7311
|
+
},
|
|
7052
7312
|
"flex-basis": {
|
|
7053
7313
|
"values": [
|
|
7054
7314
|
"auto",
|
|
@@ -7094,6 +7354,9 @@ export const generatedPropertyValues = {
|
|
|
7094
7354
|
"infinite"
|
|
7095
7355
|
]
|
|
7096
7356
|
},
|
|
7357
|
+
"font": {
|
|
7358
|
+
"values": []
|
|
7359
|
+
},
|
|
7097
7360
|
"font-feature-settings": {
|
|
7098
7361
|
"values": [
|
|
7099
7362
|
"normal"
|
|
@@ -7170,6 +7433,11 @@ export const generatedPropertyValues = {
|
|
|
7170
7433
|
"oblique"
|
|
7171
7434
|
]
|
|
7172
7435
|
},
|
|
7436
|
+
"font-synthesis": {
|
|
7437
|
+
"values": [
|
|
7438
|
+
"none"
|
|
7439
|
+
]
|
|
7440
|
+
},
|
|
7173
7441
|
"font-synthesis-small-caps": {
|
|
7174
7442
|
"values": [
|
|
7175
7443
|
"auto",
|
|
@@ -7289,6 +7557,11 @@ export const generatedPropertyValues = {
|
|
|
7289
7557
|
"content-inline-size"
|
|
7290
7558
|
]
|
|
7291
7559
|
},
|
|
7560
|
+
"grid": {
|
|
7561
|
+
"values": [
|
|
7562
|
+
"none"
|
|
7563
|
+
]
|
|
7564
|
+
},
|
|
7292
7565
|
"grid-auto-columns": {
|
|
7293
7566
|
"values": [
|
|
7294
7567
|
"auto",
|
|
@@ -7344,6 +7617,11 @@ export const generatedPropertyValues = {
|
|
|
7344
7617
|
"auto"
|
|
7345
7618
|
]
|
|
7346
7619
|
},
|
|
7620
|
+
"grid-template": {
|
|
7621
|
+
"values": [
|
|
7622
|
+
"none"
|
|
7623
|
+
]
|
|
7624
|
+
},
|
|
7347
7625
|
"grid-template-areas": {
|
|
7348
7626
|
"values": [
|
|
7349
7627
|
"none"
|
|
@@ -7606,6 +7884,22 @@ export const generatedPropertyValues = {
|
|
|
7606
7884
|
"none"
|
|
7607
7885
|
]
|
|
7608
7886
|
},
|
|
7887
|
+
"mask": {
|
|
7888
|
+
"values": [
|
|
7889
|
+
"none",
|
|
7890
|
+
"left",
|
|
7891
|
+
"right",
|
|
7892
|
+
"center",
|
|
7893
|
+
"top",
|
|
7894
|
+
"bottom",
|
|
7895
|
+
"subtract",
|
|
7896
|
+
"intersect",
|
|
7897
|
+
"exclude",
|
|
7898
|
+
"alpha",
|
|
7899
|
+
"luminance",
|
|
7900
|
+
"match-source"
|
|
7901
|
+
]
|
|
7902
|
+
},
|
|
7609
7903
|
"mask-composite": {
|
|
7610
7904
|
"values": [
|
|
7611
7905
|
"add",
|
|
@@ -7974,7 +8268,43 @@ export const generatedPropertyValues = {
|
|
|
7974
8268
|
"end",
|
|
7975
8269
|
"self-start",
|
|
7976
8270
|
"self-end",
|
|
7977
|
-
"all"
|
|
8271
|
+
"span-all",
|
|
8272
|
+
"span-left",
|
|
8273
|
+
"span-right",
|
|
8274
|
+
"span-x-start",
|
|
8275
|
+
"span-x-end",
|
|
8276
|
+
"self-x-start",
|
|
8277
|
+
"self-x-end",
|
|
8278
|
+
"span-self-x-start",
|
|
8279
|
+
"span-self-x-end",
|
|
8280
|
+
"span-top",
|
|
8281
|
+
"span-bottom",
|
|
8282
|
+
"span-y-start",
|
|
8283
|
+
"span-y-end",
|
|
8284
|
+
"self-y-start",
|
|
8285
|
+
"self-y-end",
|
|
8286
|
+
"span-self-y-start",
|
|
8287
|
+
"span-self-y-end",
|
|
8288
|
+
"block-start",
|
|
8289
|
+
"block-end",
|
|
8290
|
+
"span-block-start",
|
|
8291
|
+
"span-block-end",
|
|
8292
|
+
"inline-start",
|
|
8293
|
+
"inline-end",
|
|
8294
|
+
"span-inline-start",
|
|
8295
|
+
"span-inline-end",
|
|
8296
|
+
"self-block-start",
|
|
8297
|
+
"self-block-end",
|
|
8298
|
+
"span-self-block-start",
|
|
8299
|
+
"span-self-block-end",
|
|
8300
|
+
"self-inline-start",
|
|
8301
|
+
"self-inline-end",
|
|
8302
|
+
"span-self-inline-start",
|
|
8303
|
+
"span-self-inline-end",
|
|
8304
|
+
"span-start",
|
|
8305
|
+
"span-end",
|
|
8306
|
+
"span-self-start",
|
|
8307
|
+
"span-self-end"
|
|
7978
8308
|
]
|
|
7979
8309
|
},
|
|
7980
8310
|
"position-try-fallbacks": {
|
|
@@ -8041,6 +8371,11 @@ export const generatedPropertyValues = {
|
|
|
8041
8371
|
"auto"
|
|
8042
8372
|
]
|
|
8043
8373
|
},
|
|
8374
|
+
"rotate": {
|
|
8375
|
+
"values": [
|
|
8376
|
+
"none"
|
|
8377
|
+
]
|
|
8378
|
+
},
|
|
8044
8379
|
"row-gap": {
|
|
8045
8380
|
"values": [
|
|
8046
8381
|
"normal"
|
|
@@ -8118,6 +8453,7 @@ export const generatedPropertyValues = {
|
|
|
8118
8453
|
"ruby-overhang": {
|
|
8119
8454
|
"values": [
|
|
8120
8455
|
"auto",
|
|
8456
|
+
"none",
|
|
8121
8457
|
"spaces"
|
|
8122
8458
|
]
|
|
8123
8459
|
},
|
|
@@ -8143,6 +8479,11 @@ export const generatedPropertyValues = {
|
|
|
8143
8479
|
"auto"
|
|
8144
8480
|
]
|
|
8145
8481
|
},
|
|
8482
|
+
"scale": {
|
|
8483
|
+
"values": [
|
|
8484
|
+
"none"
|
|
8485
|
+
]
|
|
8486
|
+
},
|
|
8146
8487
|
"scroll-axis-lock": {
|
|
8147
8488
|
"values": [
|
|
8148
8489
|
"auto",
|
|
@@ -8299,6 +8640,12 @@ export const generatedPropertyValues = {
|
|
|
8299
8640
|
"currentcolor"
|
|
8300
8641
|
]
|
|
8301
8642
|
},
|
|
8643
|
+
"stroke": {
|
|
8644
|
+
"values": [
|
|
8645
|
+
"none",
|
|
8646
|
+
"context-stroke"
|
|
8647
|
+
]
|
|
8648
|
+
},
|
|
8302
8649
|
"stroke-dasharray": {
|
|
8303
8650
|
"values": [
|
|
8304
8651
|
"none"
|
|
@@ -8436,6 +8783,13 @@ export const generatedPropertyValues = {
|
|
|
8436
8783
|
"currentcolor"
|
|
8437
8784
|
]
|
|
8438
8785
|
},
|
|
8786
|
+
"text-fit": {
|
|
8787
|
+
"values": [
|
|
8788
|
+
"none",
|
|
8789
|
+
"shrink",
|
|
8790
|
+
"grow"
|
|
8791
|
+
]
|
|
8792
|
+
},
|
|
8439
8793
|
"text-justify": {
|
|
8440
8794
|
"values": [
|
|
8441
8795
|
"auto",
|
|
@@ -8617,6 +8971,11 @@ export const generatedPropertyValues = {
|
|
|
8617
8971
|
"step-end"
|
|
8618
8972
|
]
|
|
8619
8973
|
},
|
|
8974
|
+
"translate": {
|
|
8975
|
+
"values": [
|
|
8976
|
+
"none"
|
|
8977
|
+
]
|
|
8978
|
+
},
|
|
8620
8979
|
"trigger-scope": {
|
|
8621
8980
|
"values": [
|
|
8622
8981
|
"none",
|
|
@@ -8658,6 +9017,11 @@ export const generatedPropertyValues = {
|
|
|
8658
9017
|
"middle"
|
|
8659
9018
|
]
|
|
8660
9019
|
},
|
|
9020
|
+
"view-timeline": {
|
|
9021
|
+
"values": [
|
|
9022
|
+
"none"
|
|
9023
|
+
]
|
|
9024
|
+
},
|
|
8661
9025
|
"view-timeline-inset": {
|
|
8662
9026
|
"values": [
|
|
8663
9027
|
"auto"
|
|
@@ -3932,6 +3932,13 @@ export namespace ProtocolMapping {
|
|
|
3932
3932
|
paramsType: [Protocol.Overlay.SetShowHingeRequest?];
|
|
3933
3933
|
returnType: void;
|
|
3934
3934
|
};
|
|
3935
|
+
/**
|
|
3936
|
+
* Add a display cutout overlay.
|
|
3937
|
+
*/
|
|
3938
|
+
'Overlay.setShowDisplayCutout': {
|
|
3939
|
+
paramsType: [Protocol.Overlay.SetShowDisplayCutoutRequest?];
|
|
3940
|
+
returnType: void;
|
|
3941
|
+
};
|
|
3935
3942
|
/**
|
|
3936
3943
|
* Show elements in isolation mode with overlays.
|
|
3937
3944
|
*/
|
|
@@ -3118,6 +3118,11 @@ declare namespace ProtocolProxyApi {
|
|
|
3118
3118
|
*/
|
|
3119
3119
|
invoke_setShowHinge(params: Protocol.Overlay.SetShowHingeRequest): Promise<Protocol.ProtocolResponseWithError>;
|
|
3120
3120
|
|
|
3121
|
+
/**
|
|
3122
|
+
* Add a display cutout overlay.
|
|
3123
|
+
*/
|
|
3124
|
+
invoke_setShowDisplayCutout(params: Protocol.Overlay.SetShowDisplayCutoutRequest): Promise<Protocol.ProtocolResponseWithError>;
|
|
3125
|
+
|
|
3121
3126
|
/**
|
|
3122
3127
|
* Show elements in isolation mode with overlays.
|
|
3123
3128
|
*/
|