OLD | NEW |
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 974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
985 }, | 985 }, |
986 { | 986 { |
987 name: "TrustedEventsDefaultAction", | 987 name: "TrustedEventsDefaultAction", |
988 status: "stable", | 988 status: "stable", |
989 }, | 989 }, |
990 { | 990 { |
991 name: "UnclosedFormControlIsInvalid", | 991 name: "UnclosedFormControlIsInvalid", |
992 status: "experimental", | 992 status: "experimental", |
993 }, | 993 }, |
994 { | 994 { |
| 995 name: "V8ContextSnapshot", |
| 996 status: "test", |
| 997 }, |
| 998 { |
995 name: "V8IdleTasks", | 999 name: "V8IdleTasks", |
996 }, | 1000 }, |
997 { | 1001 { |
998 name: "VibrateRequiresUserGesture", | 1002 name: "VibrateRequiresUserGesture", |
999 status: "stable", | 1003 status: "stable", |
1000 }, | 1004 }, |
1001 { | 1005 { |
1002 name: "VideoFullscreenDetection", | 1006 name: "VideoFullscreenDetection", |
1003 }, | 1007 }, |
1004 { | 1008 { |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1094 { | 1098 { |
1095 name: "Worklet", | 1099 name: "Worklet", |
1096 status: "experimental", | 1100 status: "experimental", |
1097 }, | 1101 }, |
1098 { | 1102 { |
1099 name: "XSLT", | 1103 name: "XSLT", |
1100 status: "stable", | 1104 status: "stable", |
1101 }, | 1105 }, |
1102 ], | 1106 ], |
1103 } | 1107 } |
OLD | NEW |