| OLD | NEW |
| 1 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains | 1 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains |
| 2 // a class that stores static enablers for all experimental features. Note that | 2 // a class that stores static enablers for all experimental features. Note that |
| 3 // the method names must line up with the JavaScript method they enable for code | 3 // the method names must line up with the JavaScript method they enable for code |
| 4 // generation to work properly. | 4 // generation to work properly. |
| 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 // "stable" features listed here should be rare, as anything which we've shipped
stable | 12 // "stable" features listed here should be rare, as anything which we've shipped
stable |
| 13 // can have its runtime flag removed soon after. | 13 // can have its runtime flag removed soon after. |
| 14 // | 14 // |
| 15 // condition=ENABLE_NAME is used for wrapping features in compile-time | 15 // condition=ENABLE_NAME is used for wrapping features in compile-time |
| 16 // #if ENABLE(FEATURE) guards. These are deprecated and should all be removed. | 16 // #if ENABLE(FEATURE) guards. These are deprecated and should all be removed. |
| 17 | 17 |
| 18 ApplicationCache status=stable | 18 ApplicationCache status=stable |
| 19 AuthorShadowDOMForAnyElement | 19 AuthorShadowDOMForAnyElement |
| 20 CanvasPath status=test | 20 CanvasPath status=test |
| 21 CSSCompositing condition=CSS_COMPOSITING, status=experimental | 21 CSSCompositing status=experimental |
| 22 CSSExclusions status=experimental | 22 CSSExclusions status=experimental |
| 23 CSSRegions status=experimental | 23 CSSRegions status=experimental |
| 24 CustomDOMElements status=experimental | 24 CustomDOMElements status=experimental |
| 25 Database status=stable | 25 Database status=stable |
| 26 DeviceMotion | 26 DeviceMotion |
| 27 DeviceOrientation status=stable | 27 DeviceOrientation status=stable |
| 28 DialogElement status=experimental | 28 DialogElement status=experimental |
| 29 DirectoryUpload status=stable | 29 DirectoryUpload status=stable |
| 30 EncryptedMedia condition=ENCRYPTED_MEDIA, status=stable | 30 EncryptedMedia condition=ENCRYPTED_MEDIA, status=stable |
| 31 ExperimentalCanvasFeatures status=test | 31 ExperimentalCanvasFeatures status=test |
| (...skipping 26 matching lines...) Expand all Loading... |
| 58 SharedWorker custom | 58 SharedWorker custom |
| 59 SpeechInput status=stable | 59 SpeechInput status=stable |
| 60 SpeechSynthesis | 60 SpeechSynthesis |
| 61 StyleScoped status=experimental | 61 StyleScoped status=experimental |
| 62 Touch status=stable | 62 Touch status=stable |
| 63 VideoTrack status=stable | 63 VideoTrack status=stable |
| 64 WebAnimation | 64 WebAnimation |
| 65 WebAudio condition=WEB_AUDIO, status=stable | 65 WebAudio condition=WEB_AUDIO, status=stable |
| 66 WebMIDI status=test | 66 WebMIDI status=test |
| 67 WebPInAcceptHeader | 67 WebPInAcceptHeader |
| OLD | NEW |