| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 ScriptedSpeech status=stable | 102 ScriptedSpeech status=stable |
| 103 | 103 |
| 104 // Implements documentElement.scrollTop/Left and bodyElement.scrollTop/Left | 104 // Implements documentElement.scrollTop/Left and bodyElement.scrollTop/Left |
| 105 // as per the spec, matching other Web engines. | 105 // as per the spec, matching other Web engines. |
| 106 ScrollTopLeftInterop status=experimental | 106 ScrollTopLeftInterop status=experimental |
| 107 | 107 |
| 108 ServiceWorker status=experimental | 108 ServiceWorker status=experimental |
| 109 SessionStorage status=stable | 109 SessionStorage status=stable |
| 110 SharedWorker status=stable | 110 SharedWorker status=stable |
| 111 PictureSizes status=experimental | 111 PictureSizes status=experimental |
| 112 |
| 113 // window.showModalDialog is deprecated and slated for removal from M36 |
| 114 // Once this ships to stable supporting code can be removed.crbug.com/345831 |
| 115 ShowModalDialog status=stable |
| 116 |
| 112 SpeechInput status=test | 117 SpeechInput status=test |
| 113 SpeechSynthesis status=stable | 118 SpeechSynthesis status=stable |
| 114 Stream status=experimental | 119 Stream status=experimental |
| 115 StyleScoped status=experimental | 120 StyleScoped status=experimental |
| 116 SubpixelFontScaling status=experimental | 121 SubpixelFontScaling status=experimental |
| 117 SubresourceIntegrity status=test | 122 SubresourceIntegrity status=test |
| 118 SVGPaintOrder status=stable | 123 SVGPaintOrder status=stable |
| 119 | 124 |
| 120 // Enable optimizations to recalculate style on the fewest possible number of | 125 // Enable optimizations to recalculate style on the fewest possible number of |
| 121 // elements when updating classes, ids or attributes of DOM elements. | 126 // elements when updating classes, ids or attributes of DOM elements. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 135 WebAnimationsAPI status=experimental, depends_on=WebAnimationsElementAnimate | 140 WebAnimationsAPI status=experimental, depends_on=WebAnimationsElementAnimate |
| 136 WebAudio condition=WEB_AUDIO, status=stable | 141 WebAudio condition=WEB_AUDIO, status=stable |
| 137 WebGLDraftExtensions status=experimental | 142 WebGLDraftExtensions status=experimental |
| 138 WebMIDI status=test | 143 WebMIDI status=test |
| 139 WebKitMediaSource status=stable | 144 WebKitMediaSource status=stable |
| 140 WebVTTRegions depends_on=Media, status=experimental | 145 WebVTTRegions depends_on=Media, status=experimental |
| 141 WOFF2 status=experimental | 146 WOFF2 status=experimental |
| 142 XSLT status=stable | 147 XSLT status=stable |
| 143 | 148 |
| 144 PseudoClassesInMatchingCriteriaInAuthorShadowTrees status=test | 149 PseudoClassesInMatchingCriteriaInAuthorShadowTrees status=test |
| OLD | NEW |