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

Side by Side Diff: third_party/WebKit/Source/platform/RuntimeEnabledFeatures.json5

Issue 2698573002: Support offscreen contexts which own their backing surface (Closed)
Patch Set: Rebase and retry again Created 3 years, 10 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
OLDNEW
1 { 1 {
2 // http://dev.chromium.org/blink/runtime-enabled-features 2 // http://dev.chromium.org/blink/runtime-enabled-features
3 // 3 //
4 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains 4 // This list is used to generate RuntimeEnabledFeatures.h/cpp which contains
5 // a class that stores static enablers for all experimental features. 5 // a class that stores static enablers for all experimental features.
6 6
7 parameters: { 7 parameters: {
8 // Each feature can be assigned a "status": 8 // Each feature can be assigned a "status":
9 // status=stable -> Enable this in all Blink configurations. We are committ ed to these APIs indefinitely. 9 // status=stable -> Enable this in all Blink configurations. We are committ ed to these APIs indefinitely.
10 // status=experimental -> In-progress features, Web Developers might play wi th, but are not on by default in stable. 10 // status=experimental -> In-progress features, Web Developers might play wi th, but are not on by default in stable.
(...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after
908 name: "WebUSB", 908 name: "WebUSB",
909 origin_trial_feature_name: "WebUSB2", 909 origin_trial_feature_name: "WebUSB2",
910 status: "experimental", 910 status: "experimental",
911 }, 911 },
912 { 912 {
913 name: "WebVR", 913 name: "WebVR",
914 origin_trial_feature_name: "WebVR", 914 origin_trial_feature_name: "WebVR",
915 status: "test", 915 status: "test",
916 }, 916 },
917 { 917 {
918 name: "WebVRExperimentalRendering",
919 // Don't mark this as depends_on: ["WebVR"], we want to be able to turn
920 // it on for just origin trial sites where the dependency is unset.
921 status: "experimental",
922 },
923 {
918 name: "WebVTTRegions", 924 name: "WebVTTRegions",
919 status: "experimental", 925 status: "experimental",
920 }, 926 },
921 { 927 {
922 name: "V8IdleTasks", 928 name: "V8IdleTasks",
923 }, 929 },
924 { 930 {
925 name: "VideoFullscreenOrientationLock", 931 name: "VideoFullscreenOrientationLock",
926 }, 932 },
927 { 933 {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
1008 { 1014 {
1009 name: "UnclosedFormControlIsInvalid", 1015 name: "UnclosedFormControlIsInvalid",
1010 status: "experimental", 1016 status: "experimental",
1011 }, 1017 },
1012 { 1018 {
1013 name: "RestrictCompleteURLCharacterSet", 1019 name: "RestrictCompleteURLCharacterSet",
1014 status: "experimental", 1020 status: "experimental",
1015 }, 1021 },
1016 ], 1022 ],
1017 } 1023 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698