| OLD | NEW |
| 1 // http://dev.chromium.org/blink/runtime-enabled-features | 1 // http://dev.chromium.org/blink/runtime-enabled-features |
| 2 // | 2 // |
| 3 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains | 3 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains |
| 4 // a class that stores static enablers for all experimental features. | 4 // a class that stores static enablers for all experimental features. |
| 5 // | 5 // |
| 6 // Each feature can be assigned a "status": | 6 // Each feature can be assigned a "status": |
| 7 // status=stable -> Enable this in all Blink configurations. We are committed t
o these APIs indefinitely. | 7 // status=stable -> Enable this in all Blink configurations. We are committed t
o these APIs indefinitely. |
| 8 // status=experimental -> In-progress features, Web Developers might play with,
but are not on by default in stable. | 8 // status=experimental -> In-progress features, Web Developers might play with,
but are not on by default in stable. |
| 9 // status=test -> Enabled in ContentShell for testing, otherwise off. | 9 // status=test -> Enabled in ContentShell for testing, otherwise off. |
| 10 // Features without a status are not enabled anywhere by default. | 10 // Features without a status are not enabled anywhere by default. |
| 11 // | 11 // |
| 12 // "implied_by" or "depends_on" specifies relationship to other features: | 12 // "implied_by" or "depends_on" specifies relationship to other features: |
| 13 // implied_by=feature1[,feature2,...] -> The feature is automatically enabled if
any implied_by features is enabled; | 13 // implied_by=feature1[,feature2,...] -> The feature is automatically enabled if
any implied_by features is enabled; |
| 14 // depends_on=feature1[,feature2,...] -> The feature is enabled only if all depe
nds_on features are enabled. | 14 // depends_on=feature1[,feature2,...] -> The feature is enabled only if all depe
nds_on features are enabled. |
| 15 // Only one of "implied_by" and "depends_on" can be specified. | 15 // Only one of "implied_by" and "depends_on" can be specified. |
| 16 // | 16 // |
| 17 // "stable" features listed here should be rare, as anything which we've shipped
stable | 17 // "stable" features listed here should be rare, as anything which we've shipped
stable |
| 18 // can have its runtime flag removed soon after. | 18 // can have its runtime flag removed soon after. |
| 19 // | 19 // |
| 20 // condition=ENABLE_NAME is used for wrapping features in compile-time | 20 // condition=ENABLE_NAME is used for wrapping features in compile-time |
| 21 // #if ENABLE(FEATURE) guards. These are deprecated and should all be removed. | 21 // #if ENABLE(FEATURE) guards. These are deprecated and should all be removed. |
| 22 // | 22 // |
| 23 // api_name=API_NAME is used to integrate the feature with the experimental fram
ework, so that the feature can be | 23 // origin_trial_feature_name=FEATURE_NAME is used to integrate the feature with
the experimental framework, so that the |
| 24 // enabled at runtime on a per-page basis through a signed API key for the corre
sponding API name. | 24 // feature can be enabled at runtime on a per-page basis through a signed token
for the corresponding feature name. |
| 25 // Declaring the api_name will cause a static method to be generated in | 25 // Declaring the origin_trial_feature_name will cause a static method to be gene
rated in OriginTrials.h/cpp. This static |
| 26 // ExperimentalFeatures.h/cpp. This static method allows the feature | 26 // method allows the feature implementation to check if it is enabled for the cu
rrent context. |
| 27 // implementation to check if it is enabled for the current context. | |
| 28 | 27 |
| 29 AppBanner status=stable | 28 AppBanner status=stable |
| 30 AlwaysUseComplexText status=stable | 29 AlwaysUseComplexText status=stable |
| 31 ApplicationCache status=stable | 30 ApplicationCache status=stable |
| 32 AudioOutputDevices status=stable | 31 AudioOutputDevices status=stable |
| 33 AudioVideoTracks depends_on=Media, status=experimental | 32 AudioVideoTracks depends_on=Media, status=experimental |
| 34 AuthorShadowDOMForAnyElement | 33 AuthorShadowDOMForAnyElement |
| 35 BackgroundSync status=stable | 34 BackgroundSync status=stable |
| 36 BackgroundSyncV2 status=experimental | 35 BackgroundSyncV2 status=experimental |
| 37 CacheStorageMatchAll status=stable | 36 CacheStorageMatchAll status=stable |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 ExecCommandInJavaScript status=test | 74 ExecCommandInJavaScript status=test |
| 76 ComputedAccessibilityInfo status=experimental | 75 ComputedAccessibilityInfo status=experimental |
| 77 EventListenerOptions status=stable | 76 EventListenerOptions status=stable |
| 78 ExperimentalCanvasFeatures status=test | 77 ExperimentalCanvasFeatures status=test |
| 79 ExperimentalContentSecurityPolicyFeatures status=experimental | 78 ExperimentalContentSecurityPolicyFeatures status=experimental |
| 80 ExperimentalFramework status=test | 79 ExperimentalFramework status=test |
| 81 // Define a sample API for testing integration with the Experimental Framework. | 80 // Define a sample API for testing integration with the Experimental Framework. |
| 82 // The sample API is used in both unit and layout tests for the Experimental | 81 // The sample API is used in both unit and layout tests for the Experimental |
| 83 // Framework. Do not change this flag to stable, as it exists solely to generate | 82 // Framework. Do not change this flag to stable, as it exists solely to generate |
| 84 // code used by the sample API implementation. | 83 // code used by the sample API implementation. |
| 85 ExperimentalFrameworkSampleAPI api_name=Frobulate | 84 ExperimentalFrameworkSampleAPI origin_trial_feature_name=Frobulate |
| 86 ExperimentalV8Extras status=experimental | 85 ExperimentalV8Extras status=experimental |
| 87 FastMobileScrolling | 86 FastMobileScrolling |
| 88 FileAPIBlobClose status=experimental | 87 FileAPIBlobClose status=experimental |
| 89 FileSystem status=stable | 88 FileSystem status=stable |
| 90 ForeignFetch status=experimental | 89 ForeignFetch status=experimental |
| 91 FormDataNewMethods status=experimental | 90 FormDataNewMethods status=experimental |
| 92 FullscreenUnprefixed status=test | 91 FullscreenUnprefixed status=test |
| 93 FrameTimingSupport status=experimental | 92 FrameTimingSupport status=experimental |
| 94 Geofencing status=experimental | 93 Geofencing status=experimental |
| 95 GeometryInterfaces status=test | 94 GeometryInterfaces status=test |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 WebVR depends_on=GeometryInterfaces, status=test | 207 WebVR depends_on=GeometryInterfaces, status=test |
| 209 WebVTTRegions depends_on=Media, status=experimental | 208 WebVTTRegions depends_on=Media, status=experimental |
| 210 V8IdleTasks | 209 V8IdleTasks |
| 211 XSLT status=stable | 210 XSLT status=stable |
| 212 smil status=stable | 211 smil status=stable |
| 213 ScrollCustomization | 212 ScrollCustomization |
| 214 ScrollRestoration status=stable | 213 ScrollRestoration status=stable |
| 215 WakeLock status=experimental | 214 WakeLock status=experimental |
| 216 WebFontsIntervention status=stable | 215 WebFontsIntervention status=stable |
| 217 Worklet | 216 Worklet |
| OLD | NEW |