-
Notifications
You must be signed in to change notification settings - Fork 31
/
runtime_enabled_features.json5
4012 lines (3996 loc) · 112 KB
/
runtime_enabled_features.json5
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
{
// See third_party/blink/renderer/platform/RuntimeEnabledFeatures.md
//
// This list is used to generate runtime_enabled_features.h/cc which contains
// a class that stores static enablers for all experimental features.
parameters: {
// Each feature can be assigned a "status". The "status" can be either
// one of the values in the |valid_values| list or a dictionary of
// the platforms listed in |valid_keys| to |valid_values|.
// Use "default" as the key if you want to specify the status of
// the platforms other than the ones declared in the dictionary.
// ** Omitting "default" means the feature is not enabled on
// the platforms not listed in the status dictionary
//
// Definition of each status:
// * status=stable: Enable this in all Blink configurations. We are
// committed to these APIs indefinitely.
// * status=experimental: In-progress features, Web Developers might play
// with, but are not on by default in stable.
// * status=test: Enabled in ContentShell for testing, otherwise off.
// Features without a status are not enabled anywhere by default.
//
// Example of the dictionary value use:
// {
// name: "ExampleFeature",
// status: {"Android": "stable", "Win": "experimental"},
// }
// "ExampleFeature" will be stable on Android/WebView/WebLayer, experimental
// on Windows and not enabled on any other platform.
//
// Note that the Android status key implies Chrome for Android, WebView and
// WebLayer.
//
// "stable" features listed here should be rare, as anything which we've
// shipped stable can have its runtime flag removed soon after.
status: {
valid_values: ["stable", "experimental", "test"],
valid_keys: ["Android", "Win", "ChromeOS_Ash", "ChromeOS_Lacros", "Mac", "Linux"]
},
// "implied_by" or "depends_on" specifies relationship to other features:
// * implied_by: ["feature1","feature2",...]
// The feature is automatically enabled if any implied_by features is
// enabled. To effectively disable the feature, you must disable the
// feature and all the implied_by features.
// * depends_on: ["feature1","feature2",...]
// The feature can be enabled only if all depends_on features are enabled.
// Only one of "implied_by" and "depends_on" can be specified.
implied_by: {
default: [],
valid_type: "list",
},
// *DO NOT* specify features that depend on origin trial features.
// It is NOT supported. As a workaround, you can either specify the same
// |origin_trial_feature_name| for the feature or add the OT feature to
// the |implied_by| list.
// TODO(https://crbug.com/954679): Add support for origin trial features in 'depends_on' list
depends_on: {
default: [],
valid_type: "list",
},
// origin_trial_feature_name: "FEATURE_NAME" is used to integrate the
// feature with the Origin Trials framework. The framework allows the
// feature to be enabled at runtime on a per-page basis through a signed
// token for the corresponding feature name. Declaring the
// origin_trial_feature_name will modify the generation of the static
// methods in runtime_enabled_features.h/cpp -- the no-parameter version
// will not be generated, so all callers have to use the version that takes
// a const FeatureContext* argument.
origin_trial_feature_name: {
},
// origin_trial_os specifies the platforms where the trial is available.
// The default is empty, meaning all platforms.
origin_trial_os: {
default: [],
valid_type: "list",
},
// origin_trial_type specifies the unique type of the trial, when not the
// usual trial for a new experimental feature.
origin_trial_type: {
default: "",
valid_type: "str",
valid_values: ["deprecation", "intervention", ""],
},
// origin_trial_allows_insecure specifies whether the trial can be enabled
// in an insecure context, with default being false. This can only be set
// to true for a "deprecation" type trial.
origin_trial_allows_insecure: {
valid_type: "bool",
},
// origin_trial_allows_third_party specifies whether the trial can be enabled
// from third party origins, with default being false.
origin_trial_allows_third_party: {
valid_type: "bool",
},
// settable_from_internals specifies whether a feature can be set from
// internals.runtimeFlags, with the default being false.
settable_from_internals: {
valid_type: "bool",
},
// public specifies whether a feature can be accessed via
// third_party/blink/public/platform/web_runtime_features.h, with the
// default being false.
public: {
valid_type: "bool",
},
// Feature policy IDL extended attribute (see crrev.com/2247923004).
feature_policy: {
},
// The string name of a base::Feature. The C++ variable name in
// blink::features is built with this string by prepending 'k'.
// As long as this field isn't "none", a base::Feature is automatically
// generated in features_generated.{h,cc}. By default the "name" field
// is used for the feature name, but can be overridden here.
//
// The default value of the base::Feature instance is:
// base::FEATURE_ENABLED_BY_DEFAULT if 'status' field is 'stable", and
// base::FEATURE_DISABLED_BY_DEFAULT otherwise.
// It can be overridden by 'base_feature_status' field.
//
// If the flag should be associated with a feature not in blink::features,
// we need to specify `base_feature: "none"` and map the features in
// content/child/runtime_features.cc.
base_feature: {
valid_type: "str",
default: "",
},
// Specifiy the default value of the base::Feature instance. This field
// works only if base_feature is not "none".
// If the field is missing or "", the default value depends on the 'status'
// field. See the comment above.
// "disabled" sets base::FEATURE_DISABLED_BY_DEFAULT, and "enabled" sets
// base::FEATURE_ENABLED_BY_DEFAULT.
base_feature_status: {
valid_type: "str",
valid_values: ["", "disabled", "enabled"],
default: "",
},
// Specify how the flag value is updated from the base::Feature value. This
// field is used only if base_feature is not empty.
//
// * "enabled_or_overridden"
// - If the base::Feature default is overridden by field trial or command
// line, set Blink feature to the state of the base::Feature;
// - Otherwise if the base::Feature is enabled, enable the Blink feature.
// - Otherwise no change.
//
// * "overridden"
// Enables the Blink feature when the base::Feature is overridden by field
// trial or command line. Otherwise no change. Its difference from
// "enabled_or_overridden" is that the Blink feature isn't affected by the
// default state of the base::Feature.
//
// This is useful for Blink origin trial features especially those
// implemented in both Chromium and Blink. As origin trial only controls
// the Blink features, for now we require the base::Feature to be enabled
// by default, but we don't want the default enabled status affect the
// Blink feature. See also https://crbug.com/1048656#c10.
// This can also be used for features that are enabled by default in
// Chromium but not in Blink on all platforms and we want to use the Blink
// status. However, we would prefer consistent Chromium and Blink status
// to this.
copied_from_base_feature_if: {
valid_type: "str",
valid_values: ["enabled_or_overridden", "overridden"],
default: "enabled_or_overridden",
},
browser_process_read_access: {
default: false,
value_type: "bool",
},
browser_process_read_write_access: {
default: false,
value_type: "bool",
},
override_from_pref: {
valid_keys: [
// Chrome Prefs name (string) from which we will conditionally override
// the runtime feature value.
"name",
// If the preference equals the provided integral, string, or boolean
// value, the feature will be force enabled.
"force_enable_val",
// If the preference equals the provided integral, string, or
// boolean value, the feature will be force disabled.
"force_disable_val",
// Short-hand boolean flag. If true, will always override
// the feature. The specified Chrome Pref must be boolean.
"override_from_boolean_val",
],
}
},
data: [
{
name: "AbortSignalAny",
status: "experimental",
depends_on: ["AbortSignalComposition"]
},
{
name: "AbortSignalComposition",
status: "stable"
},
{
name: "AbortSignalThrowIfAborted",
status: "stable",
base_feature: "none",
},
{
name: "AbortSignalTimeout",
status: "stable",
base_feature: "none",
},
{
name: "Accelerated2dCanvas",
settable_from_internals: true,
status: "stable",
base_feature: "none",
},
{
name: "AcceleratedSmallCanvases",
status: "stable",
base_feature: "none",
},
{
name: "AccessibilityAriaTouchPassthrough",
status: "experimental",
base_feature: "none",
origin_trial_feature_name: "AccessibilityAriaTouchPassthrough",
},
{
name: "AccessibilityAriaVirtualContent",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "AccessibilityExposeDisplayNone",
status: "test",
base_feature: "none",
},
{
name: "AccessibilityExposeHTMLElement",
base_feature: "none",
public: true,
},
{
name: "AccessibilityExposeIgnoredNodes",
base_feature: "none",
public: true,
},
{
name: "AccessibilityObjectModel",
status: "experimental",
base_feature: "none",
},
{
name: "AccessibilityPageZoom",
base_feature: "none",
public: true,
},
{
name: "AccessibilityUseAXPositionForDocumentMarkers",
base_feature: "none",
public: true,
},
{
name: "AddIdentityInCanMakePaymentEvent",
origin_trial_allows_third_party: true,
origin_trial_feature_name: "AddIdentityInCanMakePaymentEvent",
public: true,
},
{
name: "AddressSpace",
status: "experimental",
implied_by: ["CorsRFC1918"],
base_feature: "none",
},
{
// Interest Group JS API/runtimeflag.
name: "AdInterestGroupAPI",
origin_trial_feature_name: "AdInterestGroupAPI",
implied_by: ["Fledge", "Parakeet"],
},
{
name: "AdTagging",
public: true,
status: "test",
base_feature: "none",
},
{
name: "AllowContentInitiatedDataUrlNavigations",
base_feature: "none",
},
{
name: "AndroidDownloadableFontsMatching",
base_feature: "none",
public: true,
},
{
name: "AnimationWorklet",
base_feature: "none",
},
{
name: "AnonymousIframe",
origin_trial_allows_third_party: true,
origin_trial_feature_name: "AnonymousIframeOriginTrial",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "AOMAriaRelationshipProperties",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "AriaTouchPassthrough",
status: "experimental",
base_feature: "none",
},
{
name: "AttributionReporting",
origin_trial_feature_name: "PrivacySandboxAdsAPIs",
origin_trial_allows_third_party: true,
status: "experimental",
base_feature: "none",
},
{
name: "AttributionReportingCrossAppWeb",
origin_trial_feature_name: "AttributionReportingCrossAppWeb",
origin_trial_allows_third_party: true,
base_feature: "none",
},
{
// This only exists so we can use RuntimeEnabled in the IDL file
// when either implied_by flag is enabled.
name: "AttributionReportingInterface",
// This is not going into origin trial, "origin_trial_feature_name" is
// required for using the "implied_by" behaviour.
origin_trial_feature_name: "AttributionReportingInterface",
origin_trial_allows_third_party: true,
implied_by: ["AttributionReporting", "AttributionReportingCrossAppWeb"],
base_feature: "none",
},
{
name: "AudioContextSetSinkId",
status: "stable",
base_feature: "none",
},
{
name: "AudioOutputDevices",
// Android does not yet support switching of audio output devices
status: {"Android": "", "default": "stable"},
base_feature: "none",
},
{
name: "AudioVideoTracks",
status: "experimental",
base_feature: "none",
},
{
name: "AutoDarkMode",
base_feature: "none",
origin_trial_feature_name: "AutoDarkMode",
},
{
name: "AutoDisableAccessibilityV2",
base_feature: "none",
public: true,
},
{
// Makes autofill look across shadow boundaries when collecting form
// controls to fill.
name: "AutofillShadowDOM",
status: "stable",
},
{
name: "AutomationControlled",
base_feature: "none",
public: true,
settable_from_internals: true,
},
{
// Flag set by the media::kAutoplayIgnoreWebAudio feature flag.
name: "AutoplayIgnoresWebAudio",
base_feature: "none",
public: true,
settable_from_internals: true,
},
// When enabled, enforces new interoperable semantics for 3D transforms.
// See crbug.com/1008483.
{
name: "BackfaceVisibilityInterop",
},
{
name: "BackForwardCache",
base_feature: "none",
public: true,
},
{
name: "BackForwardCacheExperimentHTTPHeader",
origin_trial_feature_name: "BackForwardCacheExperimentHTTPHeader",
status: "experimental",
base_feature: "none",
},
{
name: "BackForwardCacheNotRestoredReasons",
status: "experimental",
origin_trial_feature_name: "BackForwardCacheNotRestoredReasons",
base_feature: "BackForwardCacheSendNotRestoredReasons",
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},
{
name: "BackgroundFetch",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "BarcodeDetector",
status: {
// Built-in barcode detection APIs are only available from some
// platforms. See //services/shape_detection.
"Android": "stable",
"ChromeOS_Ash": "stable",
"ChromeOS_Lacros": "stable",
"Mac": "stable",
"default": "test",
},
base_feature: "none",
},
{
// https://github.com/WICG/display-locking/blob/master/explainer-beforematch.md
name: "BeforeMatchEvent",
origin_trial_feature_name: "BeforeMatchEvent",
status: "stable",
base_feature: "none",
},
{
name: "BeforeunloadEventCancelByPreventDefault",
status: "stable",
},
{
name: "BidiCaretAffinity",
base_feature: "none",
},
{
name: "BlinkExtensionChromeOS",
base_feature: "none",
},
{
name: "BlinkExtensionChromeOSHID",
depends_on: ["BlinkExtensionChromeOS"],
base_feature: "none",
},
{
name: "BlinkExtensionChromeOSTelemetry",
depends_on: ["BlinkExtensionChromeOS"],
base_feature: "none",
},
{
name: "BlinkExtensionChromeOSWindowManagement",
depends_on: ["BlinkExtensionChromeOS"],
base_feature: "none",
},
{
name: "BlinkLifecycleScriptForbidden",
},
{
name: "BlinkRuntimeCallStats",
base_feature: "none",
},
{
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#blocking-attributes
name: "BlockingAttribute",
status: "stable",
base_feature: "none",
},
{
name: "BlockingFocusWithoutUserActivation",
status: "experimental",
},
{
name: "BrowserVerifiedUserActivationKeyboard",
base_feature: "none",
public: true,
},
{
name: "BrowserVerifiedUserActivationMouse",
base_feature: "none",
public: true,
},
{
name: "CacheStorageCodeCacheHint",
origin_trial_feature_name: "CacheStorageCodeCacheHint",
status: "experimental",
base_feature: "none",
},
{
// If set, the parser will canonicalize whitespace strings.
name: "CanonicalizeWhitespaceStrings",
status: "stable",
},
{
name: "Canvas2dCanvasFilter",
status: "experimental",
base_feature: "none",
},
{
name: "Canvas2dImageChromium",
base_feature: "none",
public: true,
},
{
name: "Canvas2dLayers",
base_feature: "none",
},
{
name: "Canvas2dScrollPathIntoView",
status: "experimental",
base_feature: "none",
},
{
name: "CanvasFloatingPoint",
status: "experimental",
base_feature: "none",
},
{
name: "CanvasHDR",
status: "experimental",
base_feature: "none",
},
{
name: "CanvasImageSmoothing",
status: "experimental",
base_feature: "none",
},
{
name: "CapabilityDelegationDisplayCaptureRequest",
status: "experimental",
},
{
name: "CapabilityDelegationFullscreenRequest",
status: "stable",
base_feature: "none",
},
{
name: "CaptureController",
status: {"Android": "", "default": "stable"},
base_feature: "none",
},
{
name: "CaptureHandle",
depends_on: ["GetDisplayMedia"],
status: {"Android": "", "default": "stable"},
base_feature: "none",
},
{
name: "checkVisibility",
status: "stable",
base_feature: "none",
},
{
name: "ClickToCapturedPointer",
status: "experimental",
base_feature: "none",
},
{
name: "ClientHintsMetaEquivDelegateCH",
status: "stable",
},
{
name: "ClientHintsMetaHTTPEquivAcceptCH",
status: "stable",
},
{
name: "ClientHintThirdPartyDelegation",
status: "stable",
},
{
// Allows read/write of custom formats with unsanitized clipboard content.
// See crbug.com/106449.
name: "ClipboardCustomFormats",
status: "stable",
},
{
name: "ClipboardSvg",
status: "experimental",
base_feature: "none",
},
{
name: "ClipboardUnsanitizedContent",
status: "experimental",
base_feature: "none",
},
{
name: "CloseWatcher",
},
{
name: "CLSScrollAnchoring",
status: "stable",
},
{
name: "CoepReflection",
status: "test",
base_feature: "none",
},
{
name: "CompositeBackgroundAttachmentFixed",
},
{
name: "CompositeBGColorAnimation",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "CompositeBoxShadowAnimation",
base_feature: "none",
},
{
name: "CompositeClipPathAnimation",
base_feature: "none",
public: true,
},
{
name: "CompositedSelectionUpdate",
public: true,
status: {"Android": "stable"},
base_feature: "none",
},
{
name: "CompositeScrollAfterPaint",
status: "experimental",
},
{
name: "CompressionDictionaryTransport",
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
origin_trial_feature_name: "CompressionDictionaryTransport",
public: true,
status: "experimental",
},
{
name: "CompressionDictionaryTransportBackend",
base_feature_status: "disabled",
public: true,
status: "experimental",
},
{
name: "ComputedAccessibilityInfo",
status: "experimental",
base_feature: "none",
},
{
name: "ComputePressure",
status: "experimental",
},
{
name: "ConfirmationOfAction",
status: "test",
base_feature: "none",
},
{
name: "ConsolidatedMovementXY",
base_feature: "none",
public: true,
},
{
name: "ContactsManager",
status: {"Android": "stable", "default": "test"},
base_feature: "none",
},
{
name: "ContactsManagerExtraProperties",
status: {"Android": "stable", "default": "test"},
base_feature: "none",
},
{
name: "ContentIndex",
status: {"Android": "stable", "default": "experimental"},
base_feature: "none",
},
{
name: "ContentVisibilityAutoStateChangeEvent",
status: "stable",
base_feature: "none",
},
{
name: "ContextMenu",
status: "experimental",
base_feature: "none",
},
{
name: "CooperativeScheduling",
base_feature: "none",
public: true,
},
{
name: "CorsRFC1918",
base_feature: "none",
},
{
name: "CrossFramePerformanceTimeline",
status: "experimental",
},
{
// Allows positioning a positioned element relative to another one.
// https://drafts.csswg.org/css-anchor-1/
name: "CSSAnchorPositioning",
implied_by: ["HTMLSelectMenuElement"],
status: "experimental",
base_feature: "none",
},
{
name: "CSSAnimationComposition",
status: "stable",
base_feature: "none",
},
{
// Support for the animation-delay-start and animation-delay-end
// properties.
//
// Additionally, animation-delay becomes a shorthand which expands
// to those properties.
name: "CSSAnimationDelayStartEnd",
depends_on: ["ScrollTimeline"],
status: "test",
},
{
// Whether <image> values are allowed as counter style <symbol>
name: "CSSAtRuleCounterStyleImageSymbols",
base_feature: "none",
},
{
// https://drafts.csswg.org/css-counter-styles/#counter-style-speak-as
name: "CSSAtRuleCounterStyleSpeakAsDescriptor",
status: "test",
base_feature: "none",
},
{
// https://drafts.csswg.org/css-conditional-4/#support-definition-ext
// https://github.com/w3c/csswg-drafts/issues/7280#issuecomment-1143852187
name: "CSSAtSupportsAlwaysNonForgivingParsing",
status: "stable",
},
{
name: "CSSBaselineSource",
status: "stable",
},
{
// Support CSS Values Level 4 calc simplification and serialization
// as specified in the specs below.
// https://drafts.csswg.org/css-values-4/#calc-simplification
// https://drafts.csswg.org/css-values-4/#calc-serialize
name: "CSSCalcSimplificationAndSerialization",
base_feature: "none",
},
{
// Support case-sensitive attribute selector modifier
// https://drafts.csswg.org/selectors-4/#attribute-case
name: "CSSCaseSensitiveSelector",
status: "test",
base_feature: "none",
},
{
// Support for CSS Color Module Level 4
// https://www.w3.org/TR/css-color-4/
name: "CSSColor4",
status: "stable",
},
{
name: "CSSColorContrast",
status: "experimental",
base_feature: "none",
},
{
name: "CSSColorTypedOM",
status: "experimental",
base_feature: "none",
},
// Ablation study to try to measure very roughly memory savings from not saving
// pretokenized strings in CSS custom properties.
{
name: "CSSCustomPropertiesAblation",
// Off by default.
},
{
name: "CSSDisplayAnimation",
status: "experimental",
},
{
// crbug.com/995106
name: "CSSDisplayMultipleValues",
status: "experimental",
},
// Exists so that we can run a reverse-Finch experiment to assess its performance.
{
name: "CSSEasySelectors",
status: "stable",
},
{
// Include custom properties in CSSComputedStyleDeclaration::item/length.
// https://crbug.com/949807
name: "CSSEnumeratedCustomProperties",
status: "test",
base_feature: "none",
},
{
name: "CSSExponentialFunctions",
status: "experimental",
},
{
name: "CSSFocusVisible",
status: "stable",
base_feature: "none",
},
{
name: "CSSFoldables",
status: "experimental",
base_feature: "none",
},
{
// @font-face Font property descriptors auto range.
// https://www.w3.org/TR/css-fonts-4/#font-prop-desc
name: "CSSFontFaceAutoVariableRange",
status: "stable",
base_feature: "none",
},
{
name: "CSSFontFaceSrcTechParsing",
status: "stable",
base_feature: "none",
},
{
name: "CSSFontFamilyMath",
status: "stable",
implied_by: ["MathMLCore"],
base_feature: "none",
},
{
name: "CSSFontSizeAdjust",
status: "test",
base_feature: "none",
},
{
name: "CSSGridTemplatePropertyInterpolation",
status: "stable",
base_feature: "none",
},
{
// This needs to be kept as a runtime flag as long as we need to forcibly
// disable it for WebView on Android versions older than P. See
// https://crrev.com/f311a84728272e30979432e8474089b3db3c67df
name: "CSSHexAlphaColor",
status: "stable",
base_feature: "none",
},
{
// crbug.com/924069
name: "CSSHyphenateLimitChars",
status: "stable",
base_feature: "CSSHyphenateLimitChars",
},
{
name: "CSSIcUnit",
status: "stable",
base_feature: "none",
},
{
// If enabled,
// image-set values without the `-webkit-` prefix
// will be parsed.
name: "CSSImageSet",
status: "stable",
},
{
name: "CSSIndependentTransformProperties",
status: "stable",
base_feature: "none",
},
{
// http://crbug.com/1276900
name: "CSSInitialLetter",
status: "stable",
},
{
name: "CSSInitialPseudo",
status: "experimental",
base_feature: "none",
},
{
name: "CSSLastBaseline",
status: "stable",
base_feature: "none",
},
{
name: "CSSLayoutAPI",
status: "experimental",
base_feature: "none",
},
{
name: "CSSLhUnit",
status: "stable",
},
{
name: "CSSLinearTimingFunction",
status: "stable"
},
{
name: "CSSLogical",
status: "experimental",
base_feature: "none",
},
{
name: "CSSLogicalOverflow",
status: "test",
base_feature: "none",
},
{
name: "CSSMarkerNestedPseudoElement",
status: "experimental",
base_feature: "none",
},
{
name: "CSSMathDepth",
status: "stable",
implied_by: ["MathMLCore"],
base_feature: "none",
},
{
name: "CSSMathShift",
status: "stable",
implied_by: ["MathMLCore"],
base_feature: "none",
},
{
name: "CSSMathStyle",
status: "stable",
implied_by: ["MathMLCore"],
base_feature: "none",
},
{
name: "CSSMathVariant",
status: "stable",
implied_by: ["MathMLCore"],
base_feature: "none",
},
{
name: "CSSMixBlendModePlusLighter",
status: "stable",
base_feature: "none",
},
{
// Support for CSS Nesting Level 1.
//
// https://csswg.sesse.net/css-nesting-1/
name: "CSSNesting",
status: "stable",
},
{
// Support nested selectors that start with idents.
name: "CSSNestingIdent",
},
{
name: "CSSNewRootFontUnits",
status: "stable",
base_feature: "none",
},
{
name: "CSSObjectViewBox",
status: "stable",
base_feature: "none",
},
{
name: "CSSOffsetPathRay",
status: "experimental",
base_feature: "none",
},
{
name: "CSSOffsetPathRayContain",
status: "experimental",
base_feature: "none",
},
{
name: "CSSOffsetPositionAnchor",