chrome-devtools-frontend 1.0.1645245 → 1.0.1646714
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/.agents/skills/devtools-source-maps/SKILL.md +124 -0
- package/SECURITY.md +1 -1
- package/docs/README.md +1 -0
- package/docs/using_source_maps.md +159 -0
- package/front_end/core/host/AidaClientTypes.ts +2 -0
- package/front_end/core/host/UserMetrics.ts +2 -1
- package/front_end/core/root/Runtime.ts +10 -0
- package/front_end/core/sdk/DebuggerModel.ts +7 -9
- package/front_end/core/sdk/NetworkRequest.ts +0 -24
- package/front_end/generated/InspectorBackendCommands.ts +1 -1
- package/front_end/generated/SupportedCSSProperties.js +279 -0
- package/front_end/generated/protocol.ts +0 -1
- package/front_end/models/ai_assistance/AiAgent2.ts +43 -11
- package/front_end/models/ai_assistance/AiConversation.ts +4 -2
- package/front_end/models/ai_assistance/AiOrigins.ts +63 -2
- package/front_end/models/ai_assistance/README.md +15 -4
- package/front_end/models/ai_assistance/agents/AiAgent.ts +2 -2
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +2 -2
- package/front_end/models/ai_assistance/agents/FileAgent.ts +9 -42
- package/front_end/models/ai_assistance/agents/NetworkAgent.snapshot.txt +2 -2
- package/front_end/models/ai_assistance/agents/NetworkAgent.ts +9 -133
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +10 -2
- package/front_end/models/ai_assistance/agents/README.md +7 -0
- package/front_end/models/ai_assistance/agents/StorageAgent.ts +45 -0
- package/front_end/models/ai_assistance/ai_assistance.ts +8 -0
- package/front_end/models/ai_assistance/contexts/FileContext.ts +45 -0
- package/front_end/models/ai_assistance/contexts/RequestContext.snapshot.txt +48 -0
- package/front_end/models/ai_assistance/contexts/RequestContext.ts +116 -0
- package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +2 -1
- package/front_end/models/ai_assistance/skills/Skill.ts +1 -1
- package/front_end/models/ai_assistance/skills/SkillRegistry.ts +2 -0
- package/front_end/models/ai_assistance/skills/network.md +16 -0
- package/front_end/models/ai_assistance/skills/styling.md +1 -1
- package/front_end/models/ai_assistance/tools/GetNetworkRequestDetails.ts +118 -0
- package/front_end/models/ai_assistance/tools/ListNetworkRequests.ts +124 -0
- package/front_end/models/ai_assistance/tools/README.md +1 -1
- package/front_end/models/ai_assistance/tools/Tool.ts +2 -0
- package/front_end/models/ai_assistance/tools/ToolRegistry.ts +4 -0
- package/front_end/models/emulation/EmulatedDevices.ts +430 -12
- package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +15 -11
- package/front_end/models/web_mcp/WebMCPModel.ts +8 -48
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +14 -13
- package/front_end/panels/ai_assistance/components/ChatInput.ts +4 -4
- package/front_end/panels/application/ApplicationPanelSidebar.ts +25 -0
- package/front_end/panels/application/WebMCPTreeElement.ts +8 -0
- package/front_end/panels/application/WebMCPView.ts +40 -70
- package/front_end/panels/application/components/AdsView.ts +31 -28
- package/front_end/panels/application/components/adsView.css +6 -0
- package/front_end/panels/common/ExtensionServer.ts +5 -0
- package/front_end/panels/profiler/IsolateSelector.ts +4 -2
- package/front_end/panels/profiler/ProfileLauncherView.ts +194 -126
- package/front_end/panels/profiler/ProfilesPanel.ts +1 -3
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/ui/legacy/components/utils/Linkifier.ts +10 -0
- package/front_end/ui/visual_logging/KnownContextValues.ts +9 -0
- package/package.json +1 -1
|
@@ -248,6 +248,8 @@ export const generatedProperties = [
|
|
|
248
248
|
"name": "accent-color"
|
|
249
249
|
},
|
|
250
250
|
{
|
|
251
|
+
"is_descriptor": true,
|
|
252
|
+
"is_property": false,
|
|
251
253
|
"name": "additive-symbols"
|
|
252
254
|
},
|
|
253
255
|
{
|
|
@@ -257,6 +259,20 @@ export const generatedProperties = [
|
|
|
257
259
|
"name": "align-items"
|
|
258
260
|
},
|
|
259
261
|
{
|
|
262
|
+
"keywords": [
|
|
263
|
+
"auto",
|
|
264
|
+
"normal",
|
|
265
|
+
"stretch",
|
|
266
|
+
"baseline",
|
|
267
|
+
"center",
|
|
268
|
+
"start",
|
|
269
|
+
"end",
|
|
270
|
+
"self-start",
|
|
271
|
+
"self-end",
|
|
272
|
+
"flex-start",
|
|
273
|
+
"flex-end",
|
|
274
|
+
"anchor-center"
|
|
275
|
+
],
|
|
260
276
|
"name": "align-self"
|
|
261
277
|
},
|
|
262
278
|
{
|
|
@@ -933,6 +949,8 @@ export const generatedProperties = [
|
|
|
933
949
|
"name": "appearance"
|
|
934
950
|
},
|
|
935
951
|
{
|
|
952
|
+
"is_descriptor": true,
|
|
953
|
+
"is_property": false,
|
|
936
954
|
"name": "ascent-override"
|
|
937
955
|
},
|
|
938
956
|
{
|
|
@@ -1053,9 +1071,13 @@ export const generatedProperties = [
|
|
|
1053
1071
|
"name": "background-size"
|
|
1054
1072
|
},
|
|
1055
1073
|
{
|
|
1074
|
+
"is_descriptor": true,
|
|
1075
|
+
"is_property": false,
|
|
1056
1076
|
"name": "base-palette"
|
|
1057
1077
|
},
|
|
1058
1078
|
{
|
|
1079
|
+
"is_descriptor": true,
|
|
1080
|
+
"is_property": false,
|
|
1059
1081
|
"name": "base-url"
|
|
1060
1082
|
},
|
|
1061
1083
|
{
|
|
@@ -1243,6 +1265,13 @@ export const generatedProperties = [
|
|
|
1243
1265
|
"name": "border-end-start-radius"
|
|
1244
1266
|
},
|
|
1245
1267
|
{
|
|
1268
|
+
"keywords": [
|
|
1269
|
+
"none",
|
|
1270
|
+
"repeat",
|
|
1271
|
+
"stretch",
|
|
1272
|
+
"space",
|
|
1273
|
+
"round"
|
|
1274
|
+
],
|
|
1246
1275
|
"longhands": [
|
|
1247
1276
|
"border-image-source",
|
|
1248
1277
|
"border-image-slice",
|
|
@@ -1886,6 +1915,9 @@ export const generatedProperties = [
|
|
|
1886
1915
|
"name": "contain"
|
|
1887
1916
|
},
|
|
1888
1917
|
{
|
|
1918
|
+
"keywords": [
|
|
1919
|
+
"none"
|
|
1920
|
+
],
|
|
1889
1921
|
"name": "contain-intrinsic-block-size"
|
|
1890
1922
|
},
|
|
1891
1923
|
{
|
|
@@ -1895,6 +1927,9 @@ export const generatedProperties = [
|
|
|
1895
1927
|
"name": "contain-intrinsic-height"
|
|
1896
1928
|
},
|
|
1897
1929
|
{
|
|
1930
|
+
"keywords": [
|
|
1931
|
+
"none"
|
|
1932
|
+
],
|
|
1898
1933
|
"name": "contain-intrinsic-inline-size"
|
|
1899
1934
|
},
|
|
1900
1935
|
{
|
|
@@ -2338,6 +2373,8 @@ export const generatedProperties = [
|
|
|
2338
2373
|
"name": "d"
|
|
2339
2374
|
},
|
|
2340
2375
|
{
|
|
2376
|
+
"is_descriptor": true,
|
|
2377
|
+
"is_property": false,
|
|
2341
2378
|
"name": "descent-override"
|
|
2342
2379
|
},
|
|
2343
2380
|
{
|
|
@@ -2418,6 +2455,8 @@ export const generatedProperties = [
|
|
|
2418
2455
|
"name": "empty-cells"
|
|
2419
2456
|
},
|
|
2420
2457
|
{
|
|
2458
|
+
"is_descriptor": true,
|
|
2459
|
+
"is_property": false,
|
|
2421
2460
|
"name": "fallback"
|
|
2422
2461
|
},
|
|
2423
2462
|
{
|
|
@@ -2553,14 +2592,18 @@ export const generatedProperties = [
|
|
|
2553
2592
|
"name": "font"
|
|
2554
2593
|
},
|
|
2555
2594
|
{
|
|
2595
|
+
"is_descriptor": true,
|
|
2596
|
+
"is_property": false,
|
|
2556
2597
|
"name": "font-display"
|
|
2557
2598
|
},
|
|
2558
2599
|
{
|
|
2559
2600
|
"inherited": true,
|
|
2601
|
+
"is_descriptor": true,
|
|
2560
2602
|
"name": "font-family"
|
|
2561
2603
|
},
|
|
2562
2604
|
{
|
|
2563
2605
|
"inherited": true,
|
|
2606
|
+
"is_descriptor": true,
|
|
2564
2607
|
"keywords": [
|
|
2565
2608
|
"normal"
|
|
2566
2609
|
],
|
|
@@ -2631,6 +2674,7 @@ export const generatedProperties = [
|
|
|
2631
2674
|
},
|
|
2632
2675
|
{
|
|
2633
2676
|
"inherited": true,
|
|
2677
|
+
"is_descriptor": true,
|
|
2634
2678
|
"keywords": [
|
|
2635
2679
|
"normal",
|
|
2636
2680
|
"ultra-condensed",
|
|
@@ -2646,6 +2690,7 @@ export const generatedProperties = [
|
|
|
2646
2690
|
},
|
|
2647
2691
|
{
|
|
2648
2692
|
"inherited": true,
|
|
2693
|
+
"is_descriptor": true,
|
|
2649
2694
|
"keywords": [
|
|
2650
2695
|
"normal",
|
|
2651
2696
|
"italic",
|
|
@@ -2688,6 +2733,7 @@ export const generatedProperties = [
|
|
|
2688
2733
|
},
|
|
2689
2734
|
{
|
|
2690
2735
|
"inherited": true,
|
|
2736
|
+
"is_descriptor": true,
|
|
2691
2737
|
"longhands": [
|
|
2692
2738
|
"font-variant-ligatures",
|
|
2693
2739
|
"font-variant-caps",
|
|
@@ -2787,6 +2833,7 @@ export const generatedProperties = [
|
|
|
2787
2833
|
},
|
|
2788
2834
|
{
|
|
2789
2835
|
"inherited": true,
|
|
2836
|
+
"is_descriptor": true,
|
|
2790
2837
|
"keywords": [
|
|
2791
2838
|
"normal"
|
|
2792
2839
|
],
|
|
@@ -2794,6 +2841,7 @@ export const generatedProperties = [
|
|
|
2794
2841
|
},
|
|
2795
2842
|
{
|
|
2796
2843
|
"inherited": true,
|
|
2844
|
+
"is_descriptor": true,
|
|
2797
2845
|
"keywords": [
|
|
2798
2846
|
"normal",
|
|
2799
2847
|
"bold",
|
|
@@ -2972,6 +3020,8 @@ export const generatedProperties = [
|
|
|
2972
3020
|
"name": "hanging-punctuation"
|
|
2973
3021
|
},
|
|
2974
3022
|
{
|
|
3023
|
+
"is_descriptor": true,
|
|
3024
|
+
"is_property": false,
|
|
2975
3025
|
"name": "hash"
|
|
2976
3026
|
},
|
|
2977
3027
|
{
|
|
@@ -2984,6 +3034,8 @@ export const generatedProperties = [
|
|
|
2984
3034
|
"name": "height"
|
|
2985
3035
|
},
|
|
2986
3036
|
{
|
|
3037
|
+
"is_descriptor": true,
|
|
3038
|
+
"is_property": false,
|
|
2987
3039
|
"name": "hostname"
|
|
2988
3040
|
},
|
|
2989
3041
|
{
|
|
@@ -3033,6 +3085,8 @@ export const generatedProperties = [
|
|
|
3033
3085
|
"name": "image-rendering"
|
|
3034
3086
|
},
|
|
3035
3087
|
{
|
|
3088
|
+
"is_descriptor": true,
|
|
3089
|
+
"is_property": false,
|
|
3036
3090
|
"name": "inherits"
|
|
3037
3091
|
},
|
|
3038
3092
|
{
|
|
@@ -3045,6 +3099,8 @@ export const generatedProperties = [
|
|
|
3045
3099
|
"name": "initial-letter"
|
|
3046
3100
|
},
|
|
3047
3101
|
{
|
|
3102
|
+
"is_descriptor": true,
|
|
3103
|
+
"is_property": false,
|
|
3048
3104
|
"name": "initial-value"
|
|
3049
3105
|
},
|
|
3050
3106
|
{
|
|
@@ -3131,6 +3187,22 @@ export const generatedProperties = [
|
|
|
3131
3187
|
"name": "justify-items"
|
|
3132
3188
|
},
|
|
3133
3189
|
{
|
|
3190
|
+
"keywords": [
|
|
3191
|
+
"auto",
|
|
3192
|
+
"normal",
|
|
3193
|
+
"stretch",
|
|
3194
|
+
"baseline",
|
|
3195
|
+
"center",
|
|
3196
|
+
"start",
|
|
3197
|
+
"end",
|
|
3198
|
+
"self-start",
|
|
3199
|
+
"self-end",
|
|
3200
|
+
"flex-start",
|
|
3201
|
+
"flex-end",
|
|
3202
|
+
"left",
|
|
3203
|
+
"right",
|
|
3204
|
+
"anchor-center"
|
|
3205
|
+
],
|
|
3134
3206
|
"name": "justify-self"
|
|
3135
3207
|
},
|
|
3136
3208
|
{
|
|
@@ -3173,6 +3245,8 @@ export const generatedProperties = [
|
|
|
3173
3245
|
"name": "line-clamp"
|
|
3174
3246
|
},
|
|
3175
3247
|
{
|
|
3248
|
+
"is_descriptor": true,
|
|
3249
|
+
"is_property": false,
|
|
3176
3250
|
"name": "line-gap-override"
|
|
3177
3251
|
},
|
|
3178
3252
|
{
|
|
@@ -3437,12 +3511,33 @@ export const generatedProperties = [
|
|
|
3437
3511
|
"name": "min-block-size"
|
|
3438
3512
|
},
|
|
3439
3513
|
{
|
|
3514
|
+
"keywords": [
|
|
3515
|
+
"auto",
|
|
3516
|
+
"min-content",
|
|
3517
|
+
"max-content",
|
|
3518
|
+
"fit-content",
|
|
3519
|
+
"stretch"
|
|
3520
|
+
],
|
|
3440
3521
|
"name": "min-height"
|
|
3441
3522
|
},
|
|
3442
3523
|
{
|
|
3524
|
+
"keywords": [
|
|
3525
|
+
"auto",
|
|
3526
|
+
"min-content",
|
|
3527
|
+
"max-content",
|
|
3528
|
+
"fit-content",
|
|
3529
|
+
"stretch"
|
|
3530
|
+
],
|
|
3443
3531
|
"name": "min-inline-size"
|
|
3444
3532
|
},
|
|
3445
3533
|
{
|
|
3534
|
+
"keywords": [
|
|
3535
|
+
"auto",
|
|
3536
|
+
"min-content",
|
|
3537
|
+
"max-content",
|
|
3538
|
+
"fit-content",
|
|
3539
|
+
"stretch"
|
|
3540
|
+
],
|
|
3446
3541
|
"name": "min-width"
|
|
3447
3542
|
},
|
|
3448
3543
|
{
|
|
@@ -3468,9 +3563,13 @@ export const generatedProperties = [
|
|
|
3468
3563
|
"name": "mix-blend-mode"
|
|
3469
3564
|
},
|
|
3470
3565
|
{
|
|
3566
|
+
"is_descriptor": true,
|
|
3567
|
+
"is_property": false,
|
|
3471
3568
|
"name": "navigation"
|
|
3472
3569
|
},
|
|
3473
3570
|
{
|
|
3571
|
+
"is_descriptor": true,
|
|
3572
|
+
"is_property": false,
|
|
3474
3573
|
"name": "negative"
|
|
3475
3574
|
},
|
|
3476
3575
|
{
|
|
@@ -3549,6 +3648,21 @@ export const generatedProperties = [
|
|
|
3549
3648
|
"name": "orphans"
|
|
3550
3649
|
},
|
|
3551
3650
|
{
|
|
3651
|
+
"keywords": [
|
|
3652
|
+
"auto",
|
|
3653
|
+
"none",
|
|
3654
|
+
"inset",
|
|
3655
|
+
"groove",
|
|
3656
|
+
"ridge",
|
|
3657
|
+
"outset",
|
|
3658
|
+
"dotted",
|
|
3659
|
+
"dashed",
|
|
3660
|
+
"solid",
|
|
3661
|
+
"double",
|
|
3662
|
+
"medium",
|
|
3663
|
+
"thick",
|
|
3664
|
+
"thin"
|
|
3665
|
+
],
|
|
3552
3666
|
"longhands": [
|
|
3553
3667
|
"outline-color",
|
|
3554
3668
|
"outline-style",
|
|
@@ -3657,9 +3771,16 @@ export const generatedProperties = [
|
|
|
3657
3771
|
"name": "overlay"
|
|
3658
3772
|
},
|
|
3659
3773
|
{
|
|
3774
|
+
"is_descriptor": true,
|
|
3775
|
+
"is_property": false,
|
|
3660
3776
|
"name": "override-colors"
|
|
3661
3777
|
},
|
|
3662
3778
|
{
|
|
3779
|
+
"keywords": [
|
|
3780
|
+
"auto",
|
|
3781
|
+
"none",
|
|
3782
|
+
"contain"
|
|
3783
|
+
],
|
|
3663
3784
|
"longhands": [
|
|
3664
3785
|
"overscroll-behavior-x",
|
|
3665
3786
|
"overscroll-behavior-y"
|
|
@@ -3691,6 +3812,8 @@ export const generatedProperties = [
|
|
|
3691
3812
|
"name": "overscroll-behavior-y"
|
|
3692
3813
|
},
|
|
3693
3814
|
{
|
|
3815
|
+
"is_descriptor": true,
|
|
3816
|
+
"is_property": false,
|
|
3694
3817
|
"name": "pad"
|
|
3695
3818
|
},
|
|
3696
3819
|
{
|
|
@@ -3753,6 +3876,13 @@ export const generatedProperties = [
|
|
|
3753
3876
|
"name": "page-break-after"
|
|
3754
3877
|
},
|
|
3755
3878
|
{
|
|
3879
|
+
"keywords": [
|
|
3880
|
+
"auto",
|
|
3881
|
+
"left",
|
|
3882
|
+
"right",
|
|
3883
|
+
"always",
|
|
3884
|
+
"avoid"
|
|
3885
|
+
],
|
|
3756
3886
|
"longhands": [
|
|
3757
3887
|
"break-before"
|
|
3758
3888
|
],
|
|
@@ -3765,6 +3895,7 @@ export const generatedProperties = [
|
|
|
3765
3895
|
"name": "page-break-inside"
|
|
3766
3896
|
},
|
|
3767
3897
|
{
|
|
3898
|
+
"is_descriptor": true,
|
|
3768
3899
|
"keywords": [
|
|
3769
3900
|
"none",
|
|
3770
3901
|
"clamp",
|
|
@@ -3773,6 +3904,7 @@ export const generatedProperties = [
|
|
|
3773
3904
|
"name": "page-margin-safety"
|
|
3774
3905
|
},
|
|
3775
3906
|
{
|
|
3907
|
+
"is_descriptor": true,
|
|
3776
3908
|
"name": "page-orientation"
|
|
3777
3909
|
},
|
|
3778
3910
|
{
|
|
@@ -3792,9 +3924,13 @@ export const generatedProperties = [
|
|
|
3792
3924
|
"name": "path-length"
|
|
3793
3925
|
},
|
|
3794
3926
|
{
|
|
3927
|
+
"is_descriptor": true,
|
|
3928
|
+
"is_property": false,
|
|
3795
3929
|
"name": "pathname"
|
|
3796
3930
|
},
|
|
3797
3931
|
{
|
|
3932
|
+
"is_descriptor": true,
|
|
3933
|
+
"is_property": false,
|
|
3798
3934
|
"name": "pattern"
|
|
3799
3935
|
},
|
|
3800
3936
|
{
|
|
@@ -3845,6 +3981,8 @@ export const generatedProperties = [
|
|
|
3845
3981
|
"name": "pointer-events"
|
|
3846
3982
|
},
|
|
3847
3983
|
{
|
|
3984
|
+
"is_descriptor": true,
|
|
3985
|
+
"is_property": false,
|
|
3848
3986
|
"name": "port"
|
|
3849
3987
|
},
|
|
3850
3988
|
{
|
|
@@ -3922,6 +4060,8 @@ export const generatedProperties = [
|
|
|
3922
4060
|
"name": "position-visibility"
|
|
3923
4061
|
},
|
|
3924
4062
|
{
|
|
4063
|
+
"is_descriptor": true,
|
|
4064
|
+
"is_property": false,
|
|
3925
4065
|
"name": "prefix"
|
|
3926
4066
|
},
|
|
3927
4067
|
{
|
|
@@ -3933,6 +4073,8 @@ export const generatedProperties = [
|
|
|
3933
4073
|
"name": "print-color-adjust"
|
|
3934
4074
|
},
|
|
3935
4075
|
{
|
|
4076
|
+
"is_descriptor": true,
|
|
4077
|
+
"is_property": false,
|
|
3936
4078
|
"name": "protocol"
|
|
3937
4079
|
},
|
|
3938
4080
|
{
|
|
@@ -3947,6 +4089,8 @@ export const generatedProperties = [
|
|
|
3947
4089
|
"name": "r"
|
|
3948
4090
|
},
|
|
3949
4091
|
{
|
|
4092
|
+
"is_descriptor": true,
|
|
4093
|
+
"is_property": false,
|
|
3950
4094
|
"name": "range"
|
|
3951
4095
|
},
|
|
3952
4096
|
{
|
|
@@ -3976,6 +4120,8 @@ export const generatedProperties = [
|
|
|
3976
4120
|
"name": "resize"
|
|
3977
4121
|
},
|
|
3978
4122
|
{
|
|
4123
|
+
"is_descriptor": true,
|
|
4124
|
+
"is_property": false,
|
|
3979
4125
|
"name": "result"
|
|
3980
4126
|
},
|
|
3981
4127
|
{
|
|
@@ -4475,6 +4621,8 @@ export const generatedProperties = [
|
|
|
4475
4621
|
"name": "scrollbar-width"
|
|
4476
4622
|
},
|
|
4477
4623
|
{
|
|
4624
|
+
"is_descriptor": true,
|
|
4625
|
+
"is_property": false,
|
|
4478
4626
|
"name": "search"
|
|
4479
4627
|
},
|
|
4480
4628
|
{
|
|
@@ -4506,6 +4654,8 @@ export const generatedProperties = [
|
|
|
4506
4654
|
"name": "size"
|
|
4507
4655
|
},
|
|
4508
4656
|
{
|
|
4657
|
+
"is_descriptor": true,
|
|
4658
|
+
"is_property": false,
|
|
4509
4659
|
"name": "size-adjust"
|
|
4510
4660
|
},
|
|
4511
4661
|
{
|
|
@@ -4521,9 +4671,13 @@ export const generatedProperties = [
|
|
|
4521
4671
|
"name": "speak"
|
|
4522
4672
|
},
|
|
4523
4673
|
{
|
|
4674
|
+
"is_descriptor": true,
|
|
4675
|
+
"is_property": false,
|
|
4524
4676
|
"name": "speak-as"
|
|
4525
4677
|
},
|
|
4526
4678
|
{
|
|
4679
|
+
"is_descriptor": true,
|
|
4680
|
+
"is_property": false,
|
|
4527
4681
|
"name": "src"
|
|
4528
4682
|
},
|
|
4529
4683
|
{
|
|
@@ -4581,15 +4735,23 @@ export const generatedProperties = [
|
|
|
4581
4735
|
"name": "stroke-width"
|
|
4582
4736
|
},
|
|
4583
4737
|
{
|
|
4738
|
+
"is_descriptor": true,
|
|
4739
|
+
"is_property": false,
|
|
4584
4740
|
"name": "suffix"
|
|
4585
4741
|
},
|
|
4586
4742
|
{
|
|
4743
|
+
"is_descriptor": true,
|
|
4744
|
+
"is_property": false,
|
|
4587
4745
|
"name": "symbols"
|
|
4588
4746
|
},
|
|
4589
4747
|
{
|
|
4748
|
+
"is_descriptor": true,
|
|
4749
|
+
"is_property": false,
|
|
4590
4750
|
"name": "syntax"
|
|
4591
4751
|
},
|
|
4592
4752
|
{
|
|
4753
|
+
"is_descriptor": true,
|
|
4754
|
+
"is_property": false,
|
|
4593
4755
|
"name": "system"
|
|
4594
4756
|
},
|
|
4595
4757
|
{
|
|
@@ -5052,6 +5214,8 @@ export const generatedProperties = [
|
|
|
5052
5214
|
"name": "trigger-scope"
|
|
5053
5215
|
},
|
|
5054
5216
|
{
|
|
5217
|
+
"is_descriptor": true,
|
|
5218
|
+
"is_property": false,
|
|
5055
5219
|
"name": "types"
|
|
5056
5220
|
},
|
|
5057
5221
|
{
|
|
@@ -5066,6 +5230,8 @@ export const generatedProperties = [
|
|
|
5066
5230
|
"name": "unicode-bidi"
|
|
5067
5231
|
},
|
|
5068
5232
|
{
|
|
5233
|
+
"is_descriptor": true,
|
|
5234
|
+
"is_property": false,
|
|
5069
5235
|
"name": "unicode-range"
|
|
5070
5236
|
},
|
|
5071
5237
|
{
|
|
@@ -5318,6 +5484,22 @@ export const generatedPropertyValues = {
|
|
|
5318
5484
|
"currentcolor"
|
|
5319
5485
|
]
|
|
5320
5486
|
},
|
|
5487
|
+
"align-self": {
|
|
5488
|
+
"values": [
|
|
5489
|
+
"auto",
|
|
5490
|
+
"normal",
|
|
5491
|
+
"stretch",
|
|
5492
|
+
"baseline",
|
|
5493
|
+
"center",
|
|
5494
|
+
"start",
|
|
5495
|
+
"end",
|
|
5496
|
+
"self-start",
|
|
5497
|
+
"self-end",
|
|
5498
|
+
"flex-start",
|
|
5499
|
+
"flex-end",
|
|
5500
|
+
"anchor-center"
|
|
5501
|
+
]
|
|
5502
|
+
},
|
|
5321
5503
|
"alignment-baseline": {
|
|
5322
5504
|
"values": [
|
|
5323
5505
|
"auto",
|
|
@@ -5551,6 +5733,15 @@ export const generatedPropertyValues = {
|
|
|
5551
5733
|
"collapse"
|
|
5552
5734
|
]
|
|
5553
5735
|
},
|
|
5736
|
+
"border-image": {
|
|
5737
|
+
"values": [
|
|
5738
|
+
"none",
|
|
5739
|
+
"repeat",
|
|
5740
|
+
"stretch",
|
|
5741
|
+
"space",
|
|
5742
|
+
"round"
|
|
5743
|
+
]
|
|
5744
|
+
},
|
|
5554
5745
|
"border-image-repeat": {
|
|
5555
5746
|
"values": [
|
|
5556
5747
|
"stretch",
|
|
@@ -5920,11 +6111,21 @@ export const generatedPropertyValues = {
|
|
|
5920
6111
|
"block-size"
|
|
5921
6112
|
]
|
|
5922
6113
|
},
|
|
6114
|
+
"contain-intrinsic-block-size": {
|
|
6115
|
+
"values": [
|
|
6116
|
+
"none"
|
|
6117
|
+
]
|
|
6118
|
+
},
|
|
5923
6119
|
"contain-intrinsic-height": {
|
|
5924
6120
|
"values": [
|
|
5925
6121
|
"none"
|
|
5926
6122
|
]
|
|
5927
6123
|
},
|
|
6124
|
+
"contain-intrinsic-inline-size": {
|
|
6125
|
+
"values": [
|
|
6126
|
+
"none"
|
|
6127
|
+
]
|
|
6128
|
+
},
|
|
5928
6129
|
"contain-intrinsic-width": {
|
|
5929
6130
|
"values": [
|
|
5930
6131
|
"none"
|
|
@@ -6614,6 +6815,24 @@ export const generatedPropertyValues = {
|
|
|
6614
6815
|
"isolate"
|
|
6615
6816
|
]
|
|
6616
6817
|
},
|
|
6818
|
+
"justify-self": {
|
|
6819
|
+
"values": [
|
|
6820
|
+
"auto",
|
|
6821
|
+
"normal",
|
|
6822
|
+
"stretch",
|
|
6823
|
+
"baseline",
|
|
6824
|
+
"center",
|
|
6825
|
+
"start",
|
|
6826
|
+
"end",
|
|
6827
|
+
"self-start",
|
|
6828
|
+
"self-end",
|
|
6829
|
+
"flex-start",
|
|
6830
|
+
"flex-end",
|
|
6831
|
+
"left",
|
|
6832
|
+
"right",
|
|
6833
|
+
"anchor-center"
|
|
6834
|
+
]
|
|
6835
|
+
},
|
|
6617
6836
|
"left": {
|
|
6618
6837
|
"values": [
|
|
6619
6838
|
"auto"
|
|
@@ -6779,6 +6998,33 @@ export const generatedPropertyValues = {
|
|
|
6779
6998
|
"none"
|
|
6780
6999
|
]
|
|
6781
7000
|
},
|
|
7001
|
+
"min-height": {
|
|
7002
|
+
"values": [
|
|
7003
|
+
"auto",
|
|
7004
|
+
"min-content",
|
|
7005
|
+
"max-content",
|
|
7006
|
+
"fit-content",
|
|
7007
|
+
"stretch"
|
|
7008
|
+
]
|
|
7009
|
+
},
|
|
7010
|
+
"min-inline-size": {
|
|
7011
|
+
"values": [
|
|
7012
|
+
"auto",
|
|
7013
|
+
"min-content",
|
|
7014
|
+
"max-content",
|
|
7015
|
+
"fit-content",
|
|
7016
|
+
"stretch"
|
|
7017
|
+
]
|
|
7018
|
+
},
|
|
7019
|
+
"min-width": {
|
|
7020
|
+
"values": [
|
|
7021
|
+
"auto",
|
|
7022
|
+
"min-content",
|
|
7023
|
+
"max-content",
|
|
7024
|
+
"fit-content",
|
|
7025
|
+
"stretch"
|
|
7026
|
+
]
|
|
7027
|
+
},
|
|
6782
7028
|
"mix-blend-mode": {
|
|
6783
7029
|
"values": [
|
|
6784
7030
|
"normal",
|
|
@@ -6842,6 +7088,23 @@ export const generatedPropertyValues = {
|
|
|
6842
7088
|
"none"
|
|
6843
7089
|
]
|
|
6844
7090
|
},
|
|
7091
|
+
"outline": {
|
|
7092
|
+
"values": [
|
|
7093
|
+
"auto",
|
|
7094
|
+
"none",
|
|
7095
|
+
"inset",
|
|
7096
|
+
"groove",
|
|
7097
|
+
"ridge",
|
|
7098
|
+
"outset",
|
|
7099
|
+
"dotted",
|
|
7100
|
+
"dashed",
|
|
7101
|
+
"solid",
|
|
7102
|
+
"double",
|
|
7103
|
+
"medium",
|
|
7104
|
+
"thick",
|
|
7105
|
+
"thin"
|
|
7106
|
+
]
|
|
7107
|
+
},
|
|
6845
7108
|
"outline-color": {
|
|
6846
7109
|
"values": [
|
|
6847
7110
|
"currentcolor"
|
|
@@ -6915,6 +7178,13 @@ export const generatedPropertyValues = {
|
|
|
6915
7178
|
"auto"
|
|
6916
7179
|
]
|
|
6917
7180
|
},
|
|
7181
|
+
"overscroll-behavior": {
|
|
7182
|
+
"values": [
|
|
7183
|
+
"auto",
|
|
7184
|
+
"none",
|
|
7185
|
+
"contain"
|
|
7186
|
+
]
|
|
7187
|
+
},
|
|
6918
7188
|
"overscroll-behavior-x": {
|
|
6919
7189
|
"values": [
|
|
6920
7190
|
"auto",
|
|
@@ -6936,6 +7206,15 @@ export const generatedPropertyValues = {
|
|
|
6936
7206
|
"auto"
|
|
6937
7207
|
]
|
|
6938
7208
|
},
|
|
7209
|
+
"page-break-before": {
|
|
7210
|
+
"values": [
|
|
7211
|
+
"auto",
|
|
7212
|
+
"left",
|
|
7213
|
+
"right",
|
|
7214
|
+
"always",
|
|
7215
|
+
"avoid"
|
|
7216
|
+
]
|
|
7217
|
+
},
|
|
6939
7218
|
"page-margin-safety": {
|
|
6940
7219
|
"values": [
|
|
6941
7220
|
"none",
|
|
@@ -14604,7 +14604,6 @@ export namespace Page {
|
|
|
14604
14604
|
DigitalCredentialsGet = 'digital-credentials-get',
|
|
14605
14605
|
DirectSockets = 'direct-sockets',
|
|
14606
14606
|
DirectSocketsMulticast = 'direct-sockets-multicast',
|
|
14607
|
-
DirectSocketsPrivate = 'direct-sockets-private',
|
|
14608
14607
|
DisplayCapture = 'display-capture',
|
|
14609
14608
|
DocumentDomain = 'document-domain',
|
|
14610
14609
|
EncryptedMedia = 'encrypted-media',
|