| 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. |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 // Used as argument in attribute of stable-release functions/interfaces where | 215 // Used as argument in attribute of stable-release functions/interfaces where |
| 216 // a runtime-enabled feature name is required for correct IDL syntax. | 216 // a runtime-enabled feature name is required for correct IDL syntax. |
| 217 // This is a global flag; do not change its status. | 217 // This is a global flag; do not change its status. |
| 218 StableBlinkFeatures status=stable | 218 StableBlinkFeatures status=stable |
| 219 StackedCSSPropertyAnimations status=experimental | 219 StackedCSSPropertyAnimations status=experimental |
| 220 StyleSharing status=stable | 220 StyleSharing status=stable |
| 221 StyleMatchedPropertiesCache status=stable | 221 StyleMatchedPropertiesCache status=stable |
| 222 // Do not turn this flag into stable, because many interfaces that should not | 222 // Do not turn this flag into stable, because many interfaces that should not |
| 223 // be shipped would be enabled. Instead, remove the flag from the shipping | 223 // be shipped would be enabled. Instead, remove the flag from the shipping |
| 224 // interface. | 224 // interface. |
| 225 ExperimentalStream status=experimental | |
| 226 SpeculativeLaunchServiceWorker | 225 SpeculativeLaunchServiceWorker |
| 227 StorageEstimate status=experimental | 226 StorageEstimate status=experimental |
| 228 Suborigins status=experimental | 227 Suborigins status=experimental |
| 229 TimerThrottlingForBackgroundTabs status=stable | 228 TimerThrottlingForBackgroundTabs status=stable |
| 230 TimerThrottlingForHiddenFrames status=stable | 229 TimerThrottlingForHiddenFrames status=stable |
| 231 // Many websites disable mouse support when touch APIs are available. We'd | 230 // Many websites disable mouse support when touch APIs are available. We'd |
| 232 // like to enable this always but can't until more websites fix this bug. | 231 // like to enable this always but can't until more websites fix this bug. |
| 233 // Chromium sets this conditionally (eg. based on the presence of a | 232 // Chromium sets this conditionally (eg. based on the presence of a |
| 234 // touchscreen) in ApplyWebPreferences. | 233 // touchscreen) in ApplyWebPreferences. |
| 235 Touch status=stable | 234 Touch status=stable |
| (...skipping 21 matching lines...) Expand all Loading... |
| 257 WakeLock status=experimental | 256 WakeLock status=experimental |
| 258 WebFontsInterventionV2With2G | 257 WebFontsInterventionV2With2G |
| 259 WebFontsInterventionV2With3G | 258 WebFontsInterventionV2With3G |
| 260 WebFontsInterventionV2WithSlow2G | 259 WebFontsInterventionV2WithSlow2G |
| 261 WebFontsInterventionTrigger | 260 WebFontsInterventionTrigger |
| 262 WebShare status=experimental, origin_trial_feature_name=WebShare, origin_trial_o
s=android | 261 WebShare status=experimental, origin_trial_feature_name=WebShare, origin_trial_o
s=android |
| 263 Worklet status=experimental | 262 Worklet status=experimental |
| 264 LazyParseCSS status=experimental | 263 LazyParseCSS status=experimental |
| 265 ParseHTMLOnMainThread status=test | 264 ParseHTMLOnMainThread status=test |
| 266 SendBeaconThrowForBlobWithNonSimpleType status=experimental | 265 SendBeaconThrowForBlobWithNonSimpleType status=experimental |
| OLD | NEW |