-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathruntime_enabled_features.json5
1561 lines (1553 loc) · 38.2 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
{
// http://dev.chromium.org/blink/runtime-enabled-features
//
// 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", "ChromeOS": "experimental"},
// }
// "ExampleFeature" will be stable on Android, experimental on ChromeOS
// and not enabled on any other platform
//
// "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", "MacOSX"]
},
// "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;
// * depends_on: ["feature1","feature2",...]
// The feature is 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",
},
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 cause a static method to be generated in
// origin_trials.h/cpp. This static method allows the feature implementation
// to check if it is enabled for the current context.
origin_trial_feature_name: {
},
origin_trial_os: {
default: [],
valid_type: "list",
},
// settable_from_internals specifies whether a feature can be set from
// internals.runtimeFlags, with the default being false.
settable_from_internals: {
valid_type: "bool",
},
// Set to true to have customised {feature}Enabled() method implementation.
custom: {
valid_type: "bool",
},
// Feature policy IDL extended attribute (see crrev.com/2247923004).
feature_policy: {
},
},
data: [
{
name: "Accelerated2dCanvas",
settable_from_internals: true,
status: "stable",
},
{
name: "AccessibilityObjectModel",
status: "experimental",
},
{
name: "AdTagging",
status: "test",
},
{
name: "AllowActivationDelegationAttr",
},
{
name: "AllowContentInitiatedDataUrlNavigations",
status: "stable",
},
{
name: "AnimationWorklet",
origin_trial_feature_name: "AnimationWorklet",
status: "experimental",
},
{
name: "AsyncClipboard",
status: "experimental",
},
{
name: "AudioOutputDevices",
// Android does not yet support switching of audio output devices
status: {"Android": "", "default": "stable"},
},
{
name: "AudioVideoTracks",
status: "experimental",
},
{
name: "AutomationControlled",
settable_from_internals: true,
},
{
name: "AutoPictureInPicture",
depends_on: ["PictureInPictureAPI"],
origin_trial_feature_name: "AutoPictureInPicture",
status: "experimental",
},
{
// Flag set by the media::kAutoplayIgnoreWebAudio feature flag.
name: "AutoplayIgnoresWebAudio",
settable_from_internals: true,
},
{
name: "BackgroundFetch",
origin_trial_feature_name: "BackgroundFetch",
status: "experimental",
},
{
name: "BackgroundVideoTrackOptimization",
status: "stable",
},
{
name: "Badging",
origin_trial_feature_name: "Badging",
status: "experimental",
},
{
name: "BidiCaretAffinity",
},
{
name: "BlinkGenPropertyTrees",
status: "experimental",
},
{
name: "BlinkRuntimeCallStats",
},
{
name: "BloatedRendererDetection",
status: "experimental",
},
{
// Detects bloated renderers even if the uptime is small.
// Useful for local testing, not intended for production.
name: "BloatedRendererDetectionSkipUptimeCheck",
},
{
name: "BlockCredentialedSubresources",
status: "stable",
},
{
name: "BlockingDownloadsInSandboxWithoutUserActivation",
},
{
name: "BlockMetaSetCookie",
status: "stable"
},
{
name: "CacheInlineScriptCode"
},
{
name: "CacheStorageAddAllRejectsDuplicates",
status: "stable",
},
{
name: "CallCaptureListenersAtCapturePhaseAtShadowHosts",
status: "stable",
},
{
name: "Canvas2dContextLostRestored",
status: "experimental",
},
{
name: "Canvas2dFixedRenderingMode",
status: "test",
},
{
name: "Canvas2dImageChromium",
},
{
name: "Canvas2dScrollPathIntoView",
status: "experimental",
},
{
name: "CanvasColorManagement",
status: "experimental",
},
{
name: "CanvasHitRegion",
status: "experimental",
},
{
name: "CanvasImageSmoothing",
status: "experimental",
},
{
name: "ClickRetargetting",
status: "experimental",
},
{
name: "ClientPlaceholdersForServerLoFi",
},
{
name: "CompositeAfterPaint",
},
{
name: "CompositedSelectionUpdate",
status: {"Android": "stable"},
},
{
name: "CompositorTouchAction",
status: "test",
},
{
name: "ComputedAccessibilityInfo",
status: "experimental",
},
{
name: "ContactsManager",
origin_trial_feature_name: "ContactsManager",
status: "experimental",
},
{
name: "ContextMenu",
status: "experimental",
},
{
name: "CookieStore",
origin_trial_feature_name: "CookieStore",
status: "experimental",
},
{
name: "CorsRFC1918",
},
{
name: "CSS3Text",
status: "experimental",
},
{
name: "CSS3TextBreakSpaces",
status: "experimental",
},
{
name: "CSSAdditiveAnimations",
depends_on: ["StackedCSSPropertyAnimations"],
status: "experimental",
},
{
name: "CSSBackdropFilter",
status: "experimental",
},
{
name: "CSSFocusVisible",
status: "experimental",
},
{
name: "CSSFontFeatureValues"
},
{
name: "CSSFontSizeAdjust",
status: "experimental",
},
{
name: "CSSFragmentIdentifiers"
},
{
// 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",
},
{
name: "CSSInBodyDoesNotBlockPaint",
status: "stable",
},
{
name: "CSSIndependentTransformProperties",
status: "experimental",
},
{
name: "CSSLayoutAPI",
status: "experimental",
},
{
name: "CSSLogical",
status: "experimental",
settable_from_internals: true,
},
{
name: "CSSMaskSourceType",
status: "experimental",
},
{
name: "CSSOffsetPathRay",
status: "experimental",
},
{
name: "CSSOffsetPathRayContain",
status: "experimental",
},
{
name: "CSSOffsetPositionAnchor",
status: "experimental",
},
{
name: "CSSPaintAPIArguments",
status: "experimental",
depends_on: ["CSSVariables2"],
},
{
name: "CSSPartPseudoElement",
status: "stable",
},
{
name: "CSSPseudoIs",
status: "experimental",
},
{
name: "CSSPseudoWhere",
status: "experimental",
},
{
name: "CSSSnapSize",
status: "experimental",
},
{
name: "CSSVariables2",
status: "experimental",
},
// Support for registered custom properties with <image> syntax.
{
name: "CSSVariables2ImageValues",
status: "test",
depends_on: ["CSSVariables2"],
},
// Support for registered custom properties with <transform-list> and
// <transform-function> syntax.
{
name: "CSSVariables2TransformValues",
status: "test",
depends_on: ["CSSVariables2"],
},
{
name: "CSSViewport",
status: "experimental",
},
{
name: "CustomElementDefaultStyle",
status: "experimental",
},
// Introduced this flag as stable so web developers can test their sites
// without native Custom Elements v0 support.
{
name: "CustomElementsV0",
origin_trial_feature_name: "WebComponentsV0",
status: "stable",
},
{
name: "CustomUserTiming",
},
{
name: "Database",
status: "stable",
},
{
name: "DecodeToYUV",
status: "experimental",
},
{
name: "DesktopCaptureDisableLocalEchoControl",
status: "experimental",
},
{
name: "DisableHardwareNoiseSuppression",
origin_trial_feature_name: "DisableHardwareNoiseSuppression",
status: "experimental",
},
{
name: "DisplayCutoutAPI",
settable_from_internals: true,
},
{
name: "DisplayLocking",
},
{
name: "DocumentCookie",
},
{
name: "DocumentDomain",
},
{
name: "DocumentWrite",
},
{
// http://crbug.com/707656 content editable in LayoutNG.
name: "EditingNG",
},
{
// http://crbug.com/905922
name: "ElementInternals",
implied_by: ["FormAssociatedCustomElements"],
},
{
// https://crbug.com/879270
name: "ElementTiming",
origin_trial_feature_name: "ElementTimingImages",
status: "experimental",
},
{
name: "EncryptedMediaEncryptionSchemeQuery",
status: "test",
},
{
name: "EncryptedMediaHdcpPolicyCheck",
status: "stable",
},
{
name: "EncryptedMediaPersistentUsageRecordSession",
status: "test",
},
{
name: "EventTiming",
origin_trial_feature_name: "EventTiming",
status: "experimental",
},
{
name: "ExecCommandInJavaScript",
status: "test",
},
{
name: "ExpensiveBackgroundTimerThrottling",
status: "stable",
},
{
name: "ExperimentalContentSecurityPolicyFeatures",
status: "experimental",
},
{
name: "ExperimentalHardwareEchoCancellation",
origin_trial_feature_name: "ExperimentalHardwareEchoCancellation2",
status: "experimental",
},
// Enables navigator.scheduling.isInputPending, allowing long-running JS to
// be able to yield itself when user input is queued (crbug.com/910421).
{
name: "ExperimentalIsInputPending",
origin_trial_feature_name: "ExperimentalIsInputPending",
status: "experimental"
},
// Enables a set of features intended to help improve web developer
// productivity, by restricting the use of potentially problematic web-
// platform behaviors, as well as adding new high-level APIs for common
// development patterns.
{
name: "ExperimentalProductivityFeatures",
status: "experimental"
},
{
name: "ExtendedTextMetrics",
status: "experimental",
},
{
name: "ExtraWebGLVideoTextureMetadata",
},
{
name: "FastFlatTreeTraversal",
},
{
name: "FastMobileScrolling",
status: {"Android": "stable"},
},
{
name: "FeaturePolicyForSandbox",
},
{
name: "FeaturePolicyJavaScriptInterface",
status: "stable"
},
{
name: "FeaturePolicyReporting",
implied_by: ["ExperimentalProductivityFeatures"],
origin_trial_feature_name: "FeaturePolicyReporting",
status: "experimental"
},
{
name: "FeaturePolicyVibrateFeature"
},
{
name: "FileSystem",
status: "stable",
},
// FirstContentfulPaintPlusPlus enables the Largest Text Paint metric, Last
// Text Paint metric, Largest Image Paint metric and Last Image Paint
// metric. See also: http://bit.ly/fcp_plus_plus
{
name: "FirstContentfulPaintPlusPlus",
},
{
name: "FocuslessSpatialNavigation",
settable_from_internals: true,
},
{
name: "FontCacheScaling",
status: "test",
},
{
name: "FontSrcLocalMatching",
// No status, as the web platform runtime enabled feature is controlled by
// a Chromium level feature.
},
// For simulating Android's overlay fullscreen video in web tests on Linux.
{
name: "ForbidSyncXHRInPageDismissal",
status: "test",
},
{
name: "ForceOverlayFullscreenVideo",
},
{
name: "ForceTallerSelectPopup",
status: {"ChromeOS": "stable"},
},
{
name: "FormAssociatedCustomElements",
status: "experimental",
},
{
name: "FormDataEvent",
status: "experimental",
},
{
name: "FractionalMouseEvent",
},
{
name: "FractionalScrollOffsets",
},
{
name: "FramebustingNeedsSameOriginOrUserGesture",
settable_from_internals: true,
status: "stable",
},
{
name: "FramesTimingFunction",
status: "experimental",
},
{
name: "FullscreenOptions",
status: "stable",
},
{
name: "FullscreenUnprefixed",
settable_from_internals: true,
status: "stable",
},
{
name: "GamepadButtonAxisEvents",
status: "experimental",
},
{
name: "GamepadVibration",
status: "experimental",
},
{
name: "GetDisplayMedia",
status: "stable",
},
{
name: "HeapCollectLiveNonNodeWrappers",
},
{
name: "HeapCompaction",
status: "stable",
},
{
name: "HeapIncrementalMarking",
status: "stable",
},
{
name: "HeapIncrementalMarkingStress"
},
{
name: "HeapUnifiedGarbageCollection",
},
{
name: "HrefTranslate",
depends_on: ["TranslateService"],
origin_trial_feature_name: "HrefTranslate",
status: "experimental",
},
// https://crbug.com/766694 for testing disabling the feature.
{
name: "HTMLImports",
origin_trial_feature_name: "WebComponentsV0",
status: "stable",
},
// Allow import only chrome internal resources.
{
name: "HTMLImportsOnlyChrome",
},
// https://crbug.com/523952 for testing disabling the feature.
{
name: "HTMLImportsStyleApplication",
status: "stable",
},
{
name: "IDBObserver",
status: "experimental",
},
{
name: "IDBTransactionCommit",
status: "experimental",
},
{
name: "IdleDetection",
status: "experimental",
},
{
name: "IgnoreCrossOriginWindowWhenNamedAccessOnWindow",
status: "experimental",
},
{
name: "ImageOrientation",
status: "test",
},
{
name: "ImplicitRootScroller",
status: "experimental",
settable_from_internals: true,
},
{
name: "InertAttribute",
status: "experimental",
},
{
name: "InputMultipleFieldsUI",
// No plan to support complex UI for date/time INPUT types on Android.
status: {"Android": "test", "default": "stable"},
},
{
name: "InstalledApp",
origin_trial_feature_name: "InstalledApp",
status: "experimental",
},
{
name: "IntersectionObserverV2",
status: "stable",
},
{
name: "InvisibleDOM",
status: "experimental",
},
{
name: "IsolatedCodeCache",
status: "experimental",
},
{
// If enabled, CSP checks use the isolated world CSP when in an isolated
// world. See crbug.com/896041.
name: "IsolatedWorldCSP"
},
{
// Tracks "jank" from layout objects changing their visual location
// between animation frames (see crbug.com/581518).
name: "JankTracking",
implied_by: ["LayoutJankAPI", "JankTrackingSweepLine"],
origin_trial_feature_name: "LayoutJankAPI",
status: "stable",
},
{
// Modifies JankTracking to use O(n log n) sweep line algorithm for
// computing the area of the jank region.
name: "JankTrackingSweepLine",
status: "experimental",
},
{
name: "KeyboardFocusableScrollers",
status: "experimental",
},
{
name: "LangAttributeAwareFormControlUI",
},
{
name: "LangClientHintHeader",
status: "experimental",
},
{
name: "LayeredAPI",
implied_by: ["ExperimentalProductivityFeatures"],
},
{
// Exposes layout jank fractions to Javascript. See explainer:
// http://bit.ly/lsm-explainer.
name: "LayoutJankAPI",
origin_trial_feature_name: "LayoutJankAPI",
status: "experimental",
},
{
name: "LayoutNG",
implied_by: ["LayoutNGBlockFragmentation", "LayoutNGFieldset", "LayoutNGFlexBox", "EditingNG", "BidiCaretAffinity"],
},
{
name: "LayoutNGBlockFragmentation",
},
{
name: "LayoutNGFieldset",
},
{
name: "LayoutNGFlexBox",
},
{
name: "LayoutNGFragmentCaching",
implied_by: ["LayoutNG"],
},
{
name: "LazyFrameLoading",
},
{
name: "LazyFrameVisibleLoadTimeMetrics",
},
{
name: "LazyImageLoading",
},
{
name: "LazyImageVisibleLoadTimeMetrics",
},
{
name: "LazyInitializeMediaControls",
// This is enabled by features::kLazyInitializeMediaControls.
},
{
name: "LegacyPerformanceMemoryCounters",
origin_trial_feature_name: "LegacyPerformanceMemoryCounters",
},
{
name: "LongTaskV2",
},
{
name: "LowLatencyCanvas",
origin_trial_feature_name: "LowLatencyCanvas",
status: "experimental",
},
{
name:"ManualSlotting",
status:"experimental",
},
{
name: "MediaCapabilitiesEncodingInfo",
status: "experimental",
},
{
name: "MediaCapabilitiesEncryptedMedia",
status: "experimental",
},
{
name: "MediaCapture",
status: {"Android": "stable"},
},
{
name: "MediaCaptureDepth",
status: "experimental",
},
{
name: "MediaCaptureDepthVideoKind",
status: "experimental",
},
// Set to reflect the MediaCastOverlayButton feature.
{
name: "MediaCastOverlayButton",
},
{
name: "MediaControlsExpandGesture"
},
{
name: "MediaControlsOverlayPlayButton",
settable_from_internals: true,
status: {"Android": "stable"},
},
{
name: "MediaDocumentDownloadButton",
},
// Set to reflect the kMediaEngagementBypassAutoplayPolicies feature.
{
name: "MediaEngagementBypassAutoplayPolicies",
},
{
name: "MediaQueryPrefersColorScheme",
},
{
name: "MediaQueryShape",
status: "experimental",
},
{
name: "MediaSession",
status: "stable",
},
{
name: "MediaSourceExperimental",
status: "experimental",
},
{
name: "MediaSourceNewAbortAndDuration",
status: "experimental",
},
{
name: "MediaStreamTrackContentHint",
status: "stable",
},
{
name: "MergeBlockingNonBlockingPools",
},
// This is enabled by default on Windows only. The only part that's
// "experimental" is the support on other platforms.
{
name: "MiddleClickAutoscroll",
status: "test",
},
// Specific mime-types such as PDF are rendered in cross-process frames.
{
name: "MimeHandlerViewInCrossProcessFrame",
},
{
name: "MobileLayoutTheme",
},
{
name: "ModernMediaControls",
},
{
name: "ModuleDedicatedWorker",
status: "experimental",
},
{
name: "ModuleServiceWorker",
status: "test",
},
{
name: "MojoJS",
status: "test",
},
// MojoJSTest is used exclusively in testing environments, whereas MojoJS
// may also be used elsewhere.
{
name: "MojoJSTest",
status: "test",
},
{
name: "MovementXYInBlink",
},
{
name: "NativeStreams",
},
{
name: "NavigatorContentUtils",
// Android does not yet support NavigatorContentUtils.
status: {"Android": "", "default": "stable"},
},
{
name: "NavigatorDeviceMemory",
status: "stable",
},
{
name: "NetInfoDownlinkMax",
// Only Android, ChromeOS support NetInfo downlinkMax, type and ontypechange now
status: {"Android": "stable", "ChromeOS": "stable"},
},
{
name: "NetworkService",
},
// Not a web exposed feature, enabled from the command line.
{
name: "NewRemotePlaybackPipeline",
},
{
name: "NoHoverAfterLayoutChange",
settable_from_internals: true,
},
{
name: "NoHoverDuringScroll",
settable_from_internals: true,
},
{
name: "NoIdleEncodingForWebTests",
status: "test",
},
{
name: "NotificationConstructor",
// Android won't be able to reliably support non-persistent notifications, the
// intended behavior for which is in flux by itself.
status: {"Android": "", "default": "stable"},
},
// NotificationContentImage is not available in all platforms
// The Notification Center on Mac OS X does not support content images.
{
name: "NotificationContentImage",
status: {"MacOSX": "test", "default": "stable"},
},
{
name: "Notifications",
status: "stable",
},
{
name: "OffMainThreadCSSPaint",
},
{
name: "OffscreenCanvas",
status: "stable",
},
{
name: "OffscreenCanvasCommit",
status: "experimental",
},
{
name: "OffscreenCanvasText",
status: "stable",
},
{
name: "OnDeviceChange",
// Android does not yet support SystemMonitor.
status: {"Android": "", "default": "stable"},
},
{
name: "OrientationEvent",
status: {"Android": "stable"},
},
{
name: "OriginTrials",
status: "stable",
},
// Define a sample API for testing integration with the Origin Trials
// Framework. The sample API is used in both unit and web tests for the
// Origin Trials Framework. Do not change this flag to stable, as it exists
// solely to generate code used by the sample API implementation.
{
name: "OriginTrialsSampleAPI",
origin_trial_feature_name: "Frobulate",
},
// Define a sample API for testing integration with the Origin Trials
// Framework. The sample API is used in both unit and web tests for the
// Origin Trials Framework. Do not change this flag to stable, as it exists
// solely to generate code used by the sample API implementation.
{
name: "OriginTrialsSampleAPIImplied",
origin_trial_feature_name: "FrobulateImplied",
implied_by: ["OriginTrialsSampleAPI"],
},
{
name: "OutOfBlinkCors",
},
{
name: "OverflowIconsForMediaControls",
},
{
name: "OverlayScrollbars",
settable_from_internals: true,
},
{
name: "OverscrollCustomization",
settable_from_internals: true,
},
// This feature refers to the API that delivers notifications to pages on
// lifecycle state changes.
{
name: "PageLifecycle",
status: "stable",
},
// The following are developer opt-outs and opt-ins for PageLifecycle state
// transitions. If neither is specified then heuristics will be applied to
// determine whether the page is eligible.
{
name: "PageLifecycleTransitionsOptIn",
origin_trial_feature_name: "PageLifecycleTransitionsOptIn",
status: "experimental",
},
{