| 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 { | 859 { |
| 860 name: "SlimmingPaintInvalidation", | 860 name: "SlimmingPaintInvalidation", |
| 861 implied_by: ["SlimmingPaintV2"], | 861 implied_by: ["SlimmingPaintV2"], |
| 862 status: "stable", | 862 status: "stable", |
| 863 }, | 863 }, |
| 864 { | 864 { |
| 865 name: "SlimmingPaintStrictCullRectClipping", | 865 name: "SlimmingPaintStrictCullRectClipping", |
| 866 }, | 866 }, |
| 867 { | 867 { |
| 868 name: "SlimmingPaintV2", | 868 name: "SlimmingPaintV2", |
| 869 implied_by: ["PrintBrowser"], | |
| 870 }, | 869 }, |
| 871 { | 870 { |
| 872 name: "smil", | 871 name: "smil", |
| 873 status: "stable", | 872 status: "stable", |
| 874 }, | 873 }, |
| 875 // Used as argument in attribute of stable-release functions/interfaces wher
e | 874 // Used as argument in attribute of stable-release functions/interfaces wher
e |
| 876 // a runtime-enabled feature name is required for correct IDL syntax. | 875 // a runtime-enabled feature name is required for correct IDL syntax. |
| 877 // This is a global flag; do not change its status. | 876 // This is a global flag; do not change its status. |
| 878 { | 877 { |
| 879 name: "StableBlinkFeatures", | 878 name: "StableBlinkFeatures", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1028 { | 1027 { |
| 1029 name: "Worklet", | 1028 name: "Worklet", |
| 1030 status: "experimental", | 1029 status: "experimental", |
| 1031 }, | 1030 }, |
| 1032 { | 1031 { |
| 1033 name: "XSLT", | 1032 name: "XSLT", |
| 1034 status: "stable", | 1033 status: "stable", |
| 1035 }, | 1034 }, |
| 1036 ], | 1035 ], |
| 1037 } | 1036 } |
| OLD | NEW |