chrome-devtools-frontend 1.0.1650677 → 1.0.1651641
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 +4 -1
- package/front_end/generated/SupportedCSSProperties.js +284 -0
- 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 +60 -0
- 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/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",
|
|
@@ -1050,6 +1064,29 @@ export const generatedProperties = [
|
|
|
1050
1064
|
"name": "backface-visibility"
|
|
1051
1065
|
},
|
|
1052
1066
|
{
|
|
1067
|
+
"devtools_keywords": [
|
|
1068
|
+
"none",
|
|
1069
|
+
"left",
|
|
1070
|
+
"right",
|
|
1071
|
+
"center",
|
|
1072
|
+
"top",
|
|
1073
|
+
"bottom",
|
|
1074
|
+
"repeat",
|
|
1075
|
+
"no-repeat",
|
|
1076
|
+
"repeat-x",
|
|
1077
|
+
"repeat-y",
|
|
1078
|
+
"round",
|
|
1079
|
+
"space",
|
|
1080
|
+
"scroll",
|
|
1081
|
+
"fixed",
|
|
1082
|
+
"local",
|
|
1083
|
+
"border-box",
|
|
1084
|
+
"padding-box",
|
|
1085
|
+
"content-box",
|
|
1086
|
+
"text",
|
|
1087
|
+
"border-area",
|
|
1088
|
+
"currentcolor"
|
|
1089
|
+
],
|
|
1053
1090
|
"longhands": [
|
|
1054
1091
|
"background-image",
|
|
1055
1092
|
"background-position-x",
|
|
@@ -1191,6 +1228,22 @@ export const generatedProperties = [
|
|
|
1191
1228
|
"name": "block-size"
|
|
1192
1229
|
},
|
|
1193
1230
|
{
|
|
1231
|
+
"devtools_keywords": [
|
|
1232
|
+
"none",
|
|
1233
|
+
"hidden",
|
|
1234
|
+
"inset",
|
|
1235
|
+
"groove",
|
|
1236
|
+
"outset",
|
|
1237
|
+
"ridge",
|
|
1238
|
+
"dotted",
|
|
1239
|
+
"dashed",
|
|
1240
|
+
"solid",
|
|
1241
|
+
"double",
|
|
1242
|
+
"thin",
|
|
1243
|
+
"medium",
|
|
1244
|
+
"thick",
|
|
1245
|
+
"currentcolor"
|
|
1246
|
+
],
|
|
1194
1247
|
"longhands": [
|
|
1195
1248
|
"border-top-color",
|
|
1196
1249
|
"border-top-style",
|
|
@@ -1876,6 +1929,11 @@ export const generatedProperties = [
|
|
|
1876
1929
|
},
|
|
1877
1930
|
{
|
|
1878
1931
|
"inherited": true,
|
|
1932
|
+
"keywords": [
|
|
1933
|
+
"normal",
|
|
1934
|
+
"light",
|
|
1935
|
+
"dark"
|
|
1936
|
+
],
|
|
1879
1937
|
"name": "color-scheme"
|
|
1880
1938
|
},
|
|
1881
1939
|
{
|
|
@@ -2072,6 +2130,9 @@ export const generatedProperties = [
|
|
|
2072
2130
|
"runtime_flag_status": "stable"
|
|
2073
2131
|
},
|
|
2074
2132
|
{
|
|
2133
|
+
"devtools_keywords": [
|
|
2134
|
+
"auto"
|
|
2135
|
+
],
|
|
2075
2136
|
"longhands": [
|
|
2076
2137
|
"column-width",
|
|
2077
2138
|
"column-count",
|
|
@@ -2126,6 +2187,9 @@ export const generatedProperties = [
|
|
|
2126
2187
|
"name": "contain-intrinsic-width"
|
|
2127
2188
|
},
|
|
2128
2189
|
{
|
|
2190
|
+
"devtools_keywords": [
|
|
2191
|
+
"none"
|
|
2192
|
+
],
|
|
2129
2193
|
"longhands": [
|
|
2130
2194
|
"container-name",
|
|
2131
2195
|
"container-type"
|
|
@@ -2694,6 +2758,9 @@ export const generatedProperties = [
|
|
|
2694
2758
|
},
|
|
2695
2759
|
{
|
|
2696
2760
|
"inherited": true,
|
|
2761
|
+
"keywords": [
|
|
2762
|
+
"none"
|
|
2763
|
+
],
|
|
2697
2764
|
"name": "fill"
|
|
2698
2765
|
},
|
|
2699
2766
|
{
|
|
@@ -2715,6 +2782,15 @@ export const generatedProperties = [
|
|
|
2715
2782
|
"name": "filter"
|
|
2716
2783
|
},
|
|
2717
2784
|
{
|
|
2785
|
+
"devtools_keywords": [
|
|
2786
|
+
"none",
|
|
2787
|
+
"auto",
|
|
2788
|
+
"content",
|
|
2789
|
+
"min-content",
|
|
2790
|
+
"max-content",
|
|
2791
|
+
"fit-content",
|
|
2792
|
+
"stretch"
|
|
2793
|
+
],
|
|
2718
2794
|
"longhands": [
|
|
2719
2795
|
"flex-grow",
|
|
2720
2796
|
"flex-shrink",
|
|
@@ -2797,6 +2873,7 @@ export const generatedProperties = [
|
|
|
2797
2873
|
"runtime_flag_status": "experimental"
|
|
2798
2874
|
},
|
|
2799
2875
|
{
|
|
2876
|
+
"devtools_keywords": [],
|
|
2800
2877
|
"inherited": true,
|
|
2801
2878
|
"longhands": [
|
|
2802
2879
|
"font-style",
|
|
@@ -2933,6 +3010,9 @@ export const generatedProperties = [
|
|
|
2933
3010
|
"name": "font-style"
|
|
2934
3011
|
},
|
|
2935
3012
|
{
|
|
3013
|
+
"devtools_keywords": [
|
|
3014
|
+
"none"
|
|
3015
|
+
],
|
|
2936
3016
|
"inherited": true,
|
|
2937
3017
|
"longhands": [
|
|
2938
3018
|
"font-synthesis-weight",
|
|
@@ -3115,6 +3195,9 @@ export const generatedProperties = [
|
|
|
3115
3195
|
"name": "gap"
|
|
3116
3196
|
},
|
|
3117
3197
|
{
|
|
3198
|
+
"devtools_keywords": [
|
|
3199
|
+
"none"
|
|
3200
|
+
],
|
|
3118
3201
|
"longhands": [
|
|
3119
3202
|
"grid-template-rows",
|
|
3120
3203
|
"grid-template-columns",
|
|
@@ -3228,6 +3311,9 @@ export const generatedProperties = [
|
|
|
3228
3311
|
"name": "grid-row-start"
|
|
3229
3312
|
},
|
|
3230
3313
|
{
|
|
3314
|
+
"devtools_keywords": [
|
|
3315
|
+
"none"
|
|
3316
|
+
],
|
|
3231
3317
|
"longhands": [
|
|
3232
3318
|
"grid-template-rows",
|
|
3233
3319
|
"grid-template-columns",
|
|
@@ -3681,6 +3767,20 @@ export const generatedProperties = [
|
|
|
3681
3767
|
"name": "marker-start"
|
|
3682
3768
|
},
|
|
3683
3769
|
{
|
|
3770
|
+
"devtools_keywords": [
|
|
3771
|
+
"none",
|
|
3772
|
+
"left",
|
|
3773
|
+
"right",
|
|
3774
|
+
"center",
|
|
3775
|
+
"top",
|
|
3776
|
+
"bottom",
|
|
3777
|
+
"subtract",
|
|
3778
|
+
"intersect",
|
|
3779
|
+
"exclude",
|
|
3780
|
+
"alpha",
|
|
3781
|
+
"luminance",
|
|
3782
|
+
"match-source"
|
|
3783
|
+
],
|
|
3684
3784
|
"longhands": [
|
|
3685
3785
|
"mask-image",
|
|
3686
3786
|
"-webkit-mask-position-x",
|
|
@@ -4449,6 +4549,9 @@ export const generatedProperties = [
|
|
|
4449
4549
|
"name": "right"
|
|
4450
4550
|
},
|
|
4451
4551
|
{
|
|
4552
|
+
"keywords": [
|
|
4553
|
+
"none"
|
|
4554
|
+
],
|
|
4452
4555
|
"name": "rotate"
|
|
4453
4556
|
},
|
|
4454
4557
|
{
|
|
@@ -4622,6 +4725,7 @@ export const generatedProperties = [
|
|
|
4622
4725
|
"inherited": true,
|
|
4623
4726
|
"keywords": [
|
|
4624
4727
|
"auto",
|
|
4728
|
+
"none",
|
|
4625
4729
|
"spaces"
|
|
4626
4730
|
],
|
|
4627
4731
|
"name": "ruby-overhang",
|
|
@@ -4776,6 +4880,9 @@ export const generatedProperties = [
|
|
|
4776
4880
|
"name": "ry"
|
|
4777
4881
|
},
|
|
4778
4882
|
{
|
|
4883
|
+
"keywords": [
|
|
4884
|
+
"none"
|
|
4885
|
+
],
|
|
4779
4886
|
"name": "scale"
|
|
4780
4887
|
},
|
|
4781
4888
|
{
|
|
@@ -5089,6 +5196,10 @@ export const generatedProperties = [
|
|
|
5089
5196
|
},
|
|
5090
5197
|
{
|
|
5091
5198
|
"inherited": true,
|
|
5199
|
+
"keywords": [
|
|
5200
|
+
"none",
|
|
5201
|
+
"context-stroke"
|
|
5202
|
+
],
|
|
5092
5203
|
"name": "stroke"
|
|
5093
5204
|
},
|
|
5094
5205
|
{
|
|
@@ -5335,6 +5446,11 @@ export const generatedProperties = [
|
|
|
5335
5446
|
},
|
|
5336
5447
|
{
|
|
5337
5448
|
"inherited": true,
|
|
5449
|
+
"keywords": [
|
|
5450
|
+
"none",
|
|
5451
|
+
"shrink",
|
|
5452
|
+
"grow"
|
|
5453
|
+
],
|
|
5338
5454
|
"name": "text-fit",
|
|
5339
5455
|
"runtime_flag": "CssTextFit",
|
|
5340
5456
|
"runtime_flag_status": "stable"
|
|
@@ -5647,6 +5763,9 @@ export const generatedProperties = [
|
|
|
5647
5763
|
"name": "transition-timing-function"
|
|
5648
5764
|
},
|
|
5649
5765
|
{
|
|
5766
|
+
"keywords": [
|
|
5767
|
+
"none"
|
|
5768
|
+
],
|
|
5650
5769
|
"name": "translate"
|
|
5651
5770
|
},
|
|
5652
5771
|
{
|
|
@@ -5709,6 +5828,9 @@ export const generatedProperties = [
|
|
|
5709
5828
|
"name": "vertical-align"
|
|
5710
5829
|
},
|
|
5711
5830
|
{
|
|
5831
|
+
"devtools_keywords": [
|
|
5832
|
+
"none"
|
|
5833
|
+
],
|
|
5712
5834
|
"longhands": [
|
|
5713
5835
|
"view-timeline-name",
|
|
5714
5836
|
"view-timeline-axis",
|
|
@@ -5857,6 +5979,15 @@ export const generatedPropertyValues = {
|
|
|
5857
5979
|
"none"
|
|
5858
5980
|
]
|
|
5859
5981
|
},
|
|
5982
|
+
"-webkit-border-image": {
|
|
5983
|
+
"values": [
|
|
5984
|
+
"none",
|
|
5985
|
+
"stretch",
|
|
5986
|
+
"repeat",
|
|
5987
|
+
"space",
|
|
5988
|
+
"round"
|
|
5989
|
+
]
|
|
5990
|
+
},
|
|
5860
5991
|
"-webkit-box-align": {
|
|
5861
5992
|
"values": [
|
|
5862
5993
|
"stretch",
|
|
@@ -5919,6 +6050,15 @@ export const generatedPropertyValues = {
|
|
|
5919
6050
|
"auto"
|
|
5920
6051
|
]
|
|
5921
6052
|
},
|
|
6053
|
+
"-webkit-mask-box-image": {
|
|
6054
|
+
"values": [
|
|
6055
|
+
"none",
|
|
6056
|
+
"stretch",
|
|
6057
|
+
"repeat",
|
|
6058
|
+
"space",
|
|
6059
|
+
"round"
|
|
6060
|
+
]
|
|
6061
|
+
},
|
|
5922
6062
|
"-webkit-mask-box-image-repeat": {
|
|
5923
6063
|
"values": [
|
|
5924
6064
|
"repeat",
|
|
@@ -6142,6 +6282,31 @@ export const generatedPropertyValues = {
|
|
|
6142
6282
|
"hidden"
|
|
6143
6283
|
]
|
|
6144
6284
|
},
|
|
6285
|
+
"background": {
|
|
6286
|
+
"values": [
|
|
6287
|
+
"none",
|
|
6288
|
+
"left",
|
|
6289
|
+
"right",
|
|
6290
|
+
"center",
|
|
6291
|
+
"top",
|
|
6292
|
+
"bottom",
|
|
6293
|
+
"repeat",
|
|
6294
|
+
"no-repeat",
|
|
6295
|
+
"repeat-x",
|
|
6296
|
+
"repeat-y",
|
|
6297
|
+
"round",
|
|
6298
|
+
"space",
|
|
6299
|
+
"scroll",
|
|
6300
|
+
"fixed",
|
|
6301
|
+
"local",
|
|
6302
|
+
"border-box",
|
|
6303
|
+
"padding-box",
|
|
6304
|
+
"content-box",
|
|
6305
|
+
"text",
|
|
6306
|
+
"border-area",
|
|
6307
|
+
"currentcolor"
|
|
6308
|
+
]
|
|
6309
|
+
},
|
|
6145
6310
|
"background-attachment": {
|
|
6146
6311
|
"values": [
|
|
6147
6312
|
"scroll",
|
|
@@ -6227,6 +6392,24 @@ export const generatedPropertyValues = {
|
|
|
6227
6392
|
"auto"
|
|
6228
6393
|
]
|
|
6229
6394
|
},
|
|
6395
|
+
"border": {
|
|
6396
|
+
"values": [
|
|
6397
|
+
"none",
|
|
6398
|
+
"hidden",
|
|
6399
|
+
"inset",
|
|
6400
|
+
"groove",
|
|
6401
|
+
"outset",
|
|
6402
|
+
"ridge",
|
|
6403
|
+
"dotted",
|
|
6404
|
+
"dashed",
|
|
6405
|
+
"solid",
|
|
6406
|
+
"double",
|
|
6407
|
+
"thin",
|
|
6408
|
+
"medium",
|
|
6409
|
+
"thick",
|
|
6410
|
+
"currentcolor"
|
|
6411
|
+
]
|
|
6412
|
+
},
|
|
6230
6413
|
"border-block-end-style": {
|
|
6231
6414
|
"values": [
|
|
6232
6415
|
"none",
|
|
@@ -6608,6 +6791,13 @@ export const generatedPropertyValues = {
|
|
|
6608
6791
|
"optimizequality"
|
|
6609
6792
|
]
|
|
6610
6793
|
},
|
|
6794
|
+
"color-scheme": {
|
|
6795
|
+
"values": [
|
|
6796
|
+
"normal",
|
|
6797
|
+
"light",
|
|
6798
|
+
"dark"
|
|
6799
|
+
]
|
|
6800
|
+
},
|
|
6611
6801
|
"column-count": {
|
|
6612
6802
|
"values": [
|
|
6613
6803
|
"auto"
|
|
@@ -6708,6 +6898,11 @@ export const generatedPropertyValues = {
|
|
|
6708
6898
|
"wrap"
|
|
6709
6899
|
]
|
|
6710
6900
|
},
|
|
6901
|
+
"columns": {
|
|
6902
|
+
"values": [
|
|
6903
|
+
"auto"
|
|
6904
|
+
]
|
|
6905
|
+
},
|
|
6711
6906
|
"contain": {
|
|
6712
6907
|
"values": [
|
|
6713
6908
|
"none",
|
|
@@ -6741,6 +6936,11 @@ export const generatedPropertyValues = {
|
|
|
6741
6936
|
"none"
|
|
6742
6937
|
]
|
|
6743
6938
|
},
|
|
6939
|
+
"container": {
|
|
6940
|
+
"values": [
|
|
6941
|
+
"none"
|
|
6942
|
+
]
|
|
6943
|
+
},
|
|
6744
6944
|
"container-name": {
|
|
6745
6945
|
"values": [
|
|
6746
6946
|
"none"
|
|
@@ -7038,6 +7238,11 @@ export const generatedPropertyValues = {
|
|
|
7038
7238
|
"content"
|
|
7039
7239
|
]
|
|
7040
7240
|
},
|
|
7241
|
+
"fill": {
|
|
7242
|
+
"values": [
|
|
7243
|
+
"none"
|
|
7244
|
+
]
|
|
7245
|
+
},
|
|
7041
7246
|
"fill-rule": {
|
|
7042
7247
|
"values": [
|
|
7043
7248
|
"nonzero",
|
|
@@ -7049,6 +7254,17 @@ export const generatedPropertyValues = {
|
|
|
7049
7254
|
"none"
|
|
7050
7255
|
]
|
|
7051
7256
|
},
|
|
7257
|
+
"flex": {
|
|
7258
|
+
"values": [
|
|
7259
|
+
"none",
|
|
7260
|
+
"auto",
|
|
7261
|
+
"content",
|
|
7262
|
+
"min-content",
|
|
7263
|
+
"max-content",
|
|
7264
|
+
"fit-content",
|
|
7265
|
+
"stretch"
|
|
7266
|
+
]
|
|
7267
|
+
},
|
|
7052
7268
|
"flex-basis": {
|
|
7053
7269
|
"values": [
|
|
7054
7270
|
"auto",
|
|
@@ -7094,6 +7310,9 @@ export const generatedPropertyValues = {
|
|
|
7094
7310
|
"infinite"
|
|
7095
7311
|
]
|
|
7096
7312
|
},
|
|
7313
|
+
"font": {
|
|
7314
|
+
"values": []
|
|
7315
|
+
},
|
|
7097
7316
|
"font-feature-settings": {
|
|
7098
7317
|
"values": [
|
|
7099
7318
|
"normal"
|
|
@@ -7170,6 +7389,11 @@ export const generatedPropertyValues = {
|
|
|
7170
7389
|
"oblique"
|
|
7171
7390
|
]
|
|
7172
7391
|
},
|
|
7392
|
+
"font-synthesis": {
|
|
7393
|
+
"values": [
|
|
7394
|
+
"none"
|
|
7395
|
+
]
|
|
7396
|
+
},
|
|
7173
7397
|
"font-synthesis-small-caps": {
|
|
7174
7398
|
"values": [
|
|
7175
7399
|
"auto",
|
|
@@ -7289,6 +7513,11 @@ export const generatedPropertyValues = {
|
|
|
7289
7513
|
"content-inline-size"
|
|
7290
7514
|
]
|
|
7291
7515
|
},
|
|
7516
|
+
"grid": {
|
|
7517
|
+
"values": [
|
|
7518
|
+
"none"
|
|
7519
|
+
]
|
|
7520
|
+
},
|
|
7292
7521
|
"grid-auto-columns": {
|
|
7293
7522
|
"values": [
|
|
7294
7523
|
"auto",
|
|
@@ -7344,6 +7573,11 @@ export const generatedPropertyValues = {
|
|
|
7344
7573
|
"auto"
|
|
7345
7574
|
]
|
|
7346
7575
|
},
|
|
7576
|
+
"grid-template": {
|
|
7577
|
+
"values": [
|
|
7578
|
+
"none"
|
|
7579
|
+
]
|
|
7580
|
+
},
|
|
7347
7581
|
"grid-template-areas": {
|
|
7348
7582
|
"values": [
|
|
7349
7583
|
"none"
|
|
@@ -7606,6 +7840,22 @@ export const generatedPropertyValues = {
|
|
|
7606
7840
|
"none"
|
|
7607
7841
|
]
|
|
7608
7842
|
},
|
|
7843
|
+
"mask": {
|
|
7844
|
+
"values": [
|
|
7845
|
+
"none",
|
|
7846
|
+
"left",
|
|
7847
|
+
"right",
|
|
7848
|
+
"center",
|
|
7849
|
+
"top",
|
|
7850
|
+
"bottom",
|
|
7851
|
+
"subtract",
|
|
7852
|
+
"intersect",
|
|
7853
|
+
"exclude",
|
|
7854
|
+
"alpha",
|
|
7855
|
+
"luminance",
|
|
7856
|
+
"match-source"
|
|
7857
|
+
]
|
|
7858
|
+
},
|
|
7609
7859
|
"mask-composite": {
|
|
7610
7860
|
"values": [
|
|
7611
7861
|
"add",
|
|
@@ -8041,6 +8291,11 @@ export const generatedPropertyValues = {
|
|
|
8041
8291
|
"auto"
|
|
8042
8292
|
]
|
|
8043
8293
|
},
|
|
8294
|
+
"rotate": {
|
|
8295
|
+
"values": [
|
|
8296
|
+
"none"
|
|
8297
|
+
]
|
|
8298
|
+
},
|
|
8044
8299
|
"row-gap": {
|
|
8045
8300
|
"values": [
|
|
8046
8301
|
"normal"
|
|
@@ -8118,6 +8373,7 @@ export const generatedPropertyValues = {
|
|
|
8118
8373
|
"ruby-overhang": {
|
|
8119
8374
|
"values": [
|
|
8120
8375
|
"auto",
|
|
8376
|
+
"none",
|
|
8121
8377
|
"spaces"
|
|
8122
8378
|
]
|
|
8123
8379
|
},
|
|
@@ -8143,6 +8399,11 @@ export const generatedPropertyValues = {
|
|
|
8143
8399
|
"auto"
|
|
8144
8400
|
]
|
|
8145
8401
|
},
|
|
8402
|
+
"scale": {
|
|
8403
|
+
"values": [
|
|
8404
|
+
"none"
|
|
8405
|
+
]
|
|
8406
|
+
},
|
|
8146
8407
|
"scroll-axis-lock": {
|
|
8147
8408
|
"values": [
|
|
8148
8409
|
"auto",
|
|
@@ -8299,6 +8560,12 @@ export const generatedPropertyValues = {
|
|
|
8299
8560
|
"currentcolor"
|
|
8300
8561
|
]
|
|
8301
8562
|
},
|
|
8563
|
+
"stroke": {
|
|
8564
|
+
"values": [
|
|
8565
|
+
"none",
|
|
8566
|
+
"context-stroke"
|
|
8567
|
+
]
|
|
8568
|
+
},
|
|
8302
8569
|
"stroke-dasharray": {
|
|
8303
8570
|
"values": [
|
|
8304
8571
|
"none"
|
|
@@ -8436,6 +8703,13 @@ export const generatedPropertyValues = {
|
|
|
8436
8703
|
"currentcolor"
|
|
8437
8704
|
]
|
|
8438
8705
|
},
|
|
8706
|
+
"text-fit": {
|
|
8707
|
+
"values": [
|
|
8708
|
+
"none",
|
|
8709
|
+
"shrink",
|
|
8710
|
+
"grow"
|
|
8711
|
+
]
|
|
8712
|
+
},
|
|
8439
8713
|
"text-justify": {
|
|
8440
8714
|
"values": [
|
|
8441
8715
|
"auto",
|
|
@@ -8617,6 +8891,11 @@ export const generatedPropertyValues = {
|
|
|
8617
8891
|
"step-end"
|
|
8618
8892
|
]
|
|
8619
8893
|
},
|
|
8894
|
+
"translate": {
|
|
8895
|
+
"values": [
|
|
8896
|
+
"none"
|
|
8897
|
+
]
|
|
8898
|
+
},
|
|
8620
8899
|
"trigger-scope": {
|
|
8621
8900
|
"values": [
|
|
8622
8901
|
"none",
|
|
@@ -8658,6 +8937,11 @@ export const generatedPropertyValues = {
|
|
|
8658
8937
|
"middle"
|
|
8659
8938
|
]
|
|
8660
8939
|
},
|
|
8940
|
+
"view-timeline": {
|
|
8941
|
+
"values": [
|
|
8942
|
+
"none"
|
|
8943
|
+
]
|
|
8944
|
+
},
|
|
8661
8945
|
"view-timeline-inset": {
|
|
8662
8946
|
"values": [
|
|
8663
8947
|
"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
|
*/
|
|
@@ -1444,6 +1444,7 @@ export namespace Audits {
|
|
|
1444
1444
|
JwksHttpNotFound = 'JwksHttpNotFound',
|
|
1445
1445
|
JwksInvalidResponse = 'JwksInvalidResponse',
|
|
1446
1446
|
TokenVerificationSdJwtUnsupportedHeaderAlg = 'TokenVerificationSdJwtUnsupportedHeaderAlg',
|
|
1447
|
+
TokenVerificationSdJwtInvalidTyp = 'TokenVerificationSdJwtInvalidTyp',
|
|
1447
1448
|
TokenVerificationSdJwtMissingIss = 'TokenVerificationSdJwtMissingIss',
|
|
1448
1449
|
TokenVerificationSdJwtMissingIat = 'TokenVerificationSdJwtMissingIat',
|
|
1449
1450
|
TokenVerificationSdJwtMissingCnf = 'TokenVerificationSdJwtMissingCnf',
|
|
@@ -13982,6 +13983,58 @@ export namespace Overlay {
|
|
|
13982
13983
|
outlineColor?: DOM.RGBA;
|
|
13983
13984
|
}
|
|
13984
13985
|
|
|
13986
|
+
/**
|
|
13987
|
+
* Supported display cutout shapes.
|
|
13988
|
+
*/
|
|
13989
|
+
export const enum DisplayCutoutShape {
|
|
13990
|
+
Pill = 'pill',
|
|
13991
|
+
Notch = 'notch',
|
|
13992
|
+
Circle = 'circle',
|
|
13993
|
+
Rectangle = 'rectangle',
|
|
13994
|
+
}
|
|
13995
|
+
|
|
13996
|
+
/**
|
|
13997
|
+
* Configuration for a display cutout.
|
|
13998
|
+
*/
|
|
13999
|
+
export interface DisplayCutoutConfig {
|
|
14000
|
+
/**
|
|
14001
|
+
* A rectangle representing the cutout bounds.
|
|
14002
|
+
*/
|
|
14003
|
+
rect: DOM.Rect;
|
|
14004
|
+
/**
|
|
14005
|
+
* Shape used to draw the cutout.
|
|
14006
|
+
*/
|
|
14007
|
+
shape: DisplayCutoutShape;
|
|
14008
|
+
/**
|
|
14009
|
+
* Border radius for rounded cutout shapes.
|
|
14010
|
+
*/
|
|
14011
|
+
borderRadius?: integer;
|
|
14012
|
+
/**
|
|
14013
|
+
* Upper shoulder radius for notch cutout shapes.
|
|
14014
|
+
*/
|
|
14015
|
+
upperRadius?: integer;
|
|
14016
|
+
/**
|
|
14017
|
+
* Lower transition radius for notch cutout shapes.
|
|
14018
|
+
*/
|
|
14019
|
+
lowerRadius?: integer;
|
|
14020
|
+
/**
|
|
14021
|
+
* Center x coordinate for circle cutout shapes.
|
|
14022
|
+
*/
|
|
14023
|
+
cx?: integer;
|
|
14024
|
+
/**
|
|
14025
|
+
* Center y coordinate for circle cutout shapes.
|
|
14026
|
+
*/
|
|
14027
|
+
cy?: integer;
|
|
14028
|
+
/**
|
|
14029
|
+
* Radius for circle cutout shapes.
|
|
14030
|
+
*/
|
|
14031
|
+
radius?: integer;
|
|
14032
|
+
/**
|
|
14033
|
+
* The cutout fill color (default: black).
|
|
14034
|
+
*/
|
|
14035
|
+
contentColor?: DOM.RGBA;
|
|
14036
|
+
}
|
|
14037
|
+
|
|
13985
14038
|
/**
|
|
13986
14039
|
* Configuration for Window Controls Overlay
|
|
13987
14040
|
*/
|
|
@@ -14344,6 +14397,13 @@ export namespace Overlay {
|
|
|
14344
14397
|
hingeConfig?: HingeConfig;
|
|
14345
14398
|
}
|
|
14346
14399
|
|
|
14400
|
+
export interface SetShowDisplayCutoutRequest {
|
|
14401
|
+
/**
|
|
14402
|
+
* display cutout data, null means hide display cutout
|
|
14403
|
+
*/
|
|
14404
|
+
displayCutoutConfig?: DisplayCutoutConfig;
|
|
14405
|
+
}
|
|
14406
|
+
|
|
14347
14407
|
export interface SetShowIsolatedElementsRequest {
|
|
14348
14408
|
/**
|
|
14349
14409
|
* An array of node identifiers and descriptors for the highlight appearance.
|
|
@@ -303,3 +303,17 @@ export interface DominatorNode {
|
|
|
303
303
|
}
|
|
304
304
|
|
|
305
305
|
export type DominatorChain = DominatorNode[];
|
|
306
|
+
|
|
307
|
+
export interface DuplicateStringGroup {
|
|
308
|
+
value: string;
|
|
309
|
+
count: number;
|
|
310
|
+
totalSelfSize: number;
|
|
311
|
+
totalRetainedSize: number;
|
|
312
|
+
nodes: Array<{
|
|
313
|
+
id: number,
|
|
314
|
+
selfSize: number,
|
|
315
|
+
retainedSize: number,
|
|
316
|
+
distance: number,
|
|
317
|
+
}>;
|
|
318
|
+
truncated?: boolean;
|
|
319
|
+
}
|
|
@@ -272,6 +272,10 @@ export class HeapSnapshotProxy extends HeapSnapshotProxyObject {
|
|
|
272
272
|
return this.callMethodPromise('aggregatesWithFilter', filter);
|
|
273
273
|
}
|
|
274
274
|
|
|
275
|
+
getDuplicateStrings(): Promise<HeapSnapshotModel.DuplicateStringGroup[]> {
|
|
276
|
+
return this.callMethodPromise('getDuplicateStrings');
|
|
277
|
+
}
|
|
278
|
+
|
|
275
279
|
aggregatesForDiff(interfaceDefinitions: string): Promise<Record<string, HeapSnapshotModel.AggregateForDiff>> {
|
|
276
280
|
return this.callMethodPromise('aggregatesForDiff', interfaceDefinitions);
|
|
277
281
|
}
|
|
@@ -8402,6 +8402,10 @@ export const NativeFunctions = [
|
|
|
8402
8402
|
name: "getPathData",
|
|
8403
8403
|
signatures: [["?settings"]]
|
|
8404
8404
|
},
|
|
8405
|
+
{
|
|
8406
|
+
name: "setPathData",
|
|
8407
|
+
signatures: [["pathData"]]
|
|
8408
|
+
},
|
|
8405
8409
|
{
|
|
8406
8410
|
name: "ByteLengthQueuingStrategy",
|
|
8407
8411
|
signatures: [["init"]]
|