| 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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 name: "SlimmingPaintStrictCullRectClipping", | 859 name: "SlimmingPaintStrictCullRectClipping", |
| 860 }, | 860 }, |
| 861 { | 861 { |
| 862 name: "SlimmingPaintV2", | 862 name: "SlimmingPaintV2", |
| 863 implied_by: ["PrintBrowser"], | 863 implied_by: ["PrintBrowser"], |
| 864 }, | 864 }, |
| 865 { | 865 { |
| 866 name: "smil", | 866 name: "smil", |
| 867 status: "stable", | 867 status: "stable", |
| 868 }, | 868 }, |
| 869 // Do not turn this flag into stable, because many interfaces that should no
t | |
| 870 // be shipped would be enabled. Instead, remove the flag from the shipping | |
| 871 // interface. | |
| 872 { | |
| 873 name: "SpeculativeLaunchServiceWorker", | |
| 874 }, | |
| 875 // Used as argument in attribute of stable-release functions/interfaces wher
e | 869 // Used as argument in attribute of stable-release functions/interfaces wher
e |
| 876 // a runtime-enabled feature name is required for correct IDL syntax. | 870 // a runtime-enabled feature name is required for correct IDL syntax. |
| 877 // This is a global flag; do not change its status. | 871 // This is a global flag; do not change its status. |
| 878 { | 872 { |
| 879 name: "StableBlinkFeatures", | 873 name: "StableBlinkFeatures", |
| 880 status: "stable", | 874 status: "stable", |
| 881 }, | 875 }, |
| 882 { | 876 { |
| 883 name: "StackedCSSPropertyAnimations", | 877 name: "StackedCSSPropertyAnimations", |
| 884 status: "experimental", | 878 status: "experimental", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1028 { | 1022 { |
| 1029 name: "Worklet", | 1023 name: "Worklet", |
| 1030 status: "experimental", | 1024 status: "experimental", |
| 1031 }, | 1025 }, |
| 1032 { | 1026 { |
| 1033 name: "XSLT", | 1027 name: "XSLT", |
| 1034 status: "stable", | 1028 status: "stable", |
| 1035 }, | 1029 }, |
| 1036 ], | 1030 ], |
| 1037 } | 1031 } |
| OLD | NEW |