Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: Source/platform/RuntimeEnabledFeatures.in

Issue 1119683003: Implement requestIdleCallback API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add LayoutTest and fix minor spec violation Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 // status=deprecated -> Alias for "test", will be removed at some point. 10 // status=deprecated -> Alias for "test", will be removed at some point.
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 // This feature is deprecated and we are evangalizing affected sites. 118 // This feature is deprecated and we are evangalizing affected sites.
119 // See https://crbug.com/346236 for current status. 119 // See https://crbug.com/346236 for current status.
120 PrefixedVideoFullscreen status=stable 120 PrefixedVideoFullscreen status=stable
121 Presentation status=experimental 121 Presentation status=experimental
122 PromiseRejectionEvent status=experimental 122 PromiseRejectionEvent status=experimental
123 PushMessaging status=stable 123 PushMessaging status=stable
124 // Push messaging payloads are blocked on the Push API supporting encryption. 124 // Push messaging payloads are blocked on the Push API supporting encryption.
125 PushMessagingData status=test 125 PushMessagingData status=test
126 QuotaPromise status=experimental 126 QuotaPromise status=experimental
127 ReducedReferrerGranularity 127 ReducedReferrerGranularity
128 RequestIdleCallback status=test
128 RequestAutocomplete status=test 129 RequestAutocomplete status=test
129 SandboxBlocksModals status=stable 130 SandboxBlocksModals status=stable
130 ScreenOrientation status=stable 131 ScreenOrientation status=stable
131 ScriptedSpeech status=stable 132 ScriptedSpeech status=stable
132 // Implements documentElement.scrollTop/Left and bodyElement.scrollTop/Left 133 // Implements documentElement.scrollTop/Left and bodyElement.scrollTop/Left
133 // as per the spec, matching other Web engines. 134 // as per the spec, matching other Web engines.
134 ScrollTopLeftInterop 135 ScrollTopLeftInterop
135 SelectionForComposedTree status=stable 136 SelectionForComposedTree status=stable
136 ServiceWorkerClientAttributes status=stable 137 ServiceWorkerClientAttributes status=stable
137 ServiceWorkerNotifications status=stable 138 ServiceWorkerNotifications status=stable
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 WebBluetooth 170 WebBluetooth
170 WebGLDraftExtensions status=experimental 171 WebGLDraftExtensions status=experimental
171 WebGLImageChromium 172 WebGLImageChromium
172 WebVR depends_on=GeometryInterfaces 173 WebVR depends_on=GeometryInterfaces
173 WebVTTRegions depends_on=Media, status=experimental 174 WebVTTRegions depends_on=Media, status=experimental
174 V8IdleTasks 175 V8IdleTasks
175 XSLT status=stable 176 XSLT status=stable
176 SVG1DOM status=stable 177 SVG1DOM status=stable
177 ScrollCustomization 178 ScrollCustomization
178 ScrollRestoration status=experimental 179 ScrollRestoration status=experimental
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698