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 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
877 { | 877 { |
878 name: "ShadowPiercingDescendantCombinator", | 878 name: "ShadowPiercingDescendantCombinator", |
879 status: "experimental", | 879 status: "experimental", |
880 }, | 880 }, |
881 { | 881 { |
882 name: "ShapeDetection", | 882 name: "ShapeDetection", |
883 status: "experimental", | 883 status: "experimental", |
884 }, | 884 }, |
885 { | 885 { |
886 name: "SharedArrayBuffer", | 886 name: "SharedArrayBuffer", |
| 887 status: "stable", |
887 }, | 888 }, |
888 { | 889 { |
889 name: "SharedWorker", | 890 name: "SharedWorker", |
890 status: "stable", | 891 status: "stable", |
891 }, | 892 }, |
892 { | 893 { |
893 name: "SlimmingPaintInvalidation", | 894 name: "SlimmingPaintInvalidation", |
894 implied_by: ["SlimmingPaintV2"], | 895 implied_by: ["SlimmingPaintV2"], |
895 status: "stable", | 896 status: "stable", |
896 }, | 897 }, |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1067 { | 1068 { |
1068 name: "Worklet", | 1069 name: "Worklet", |
1069 status: "experimental", | 1070 status: "experimental", |
1070 }, | 1071 }, |
1071 { | 1072 { |
1072 name: "XSLT", | 1073 name: "XSLT", |
1073 status: "stable", | 1074 status: "stable", |
1074 }, | 1075 }, |
1075 ], | 1076 ], |
1076 } | 1077 } |
OLD | NEW |