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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 }, | 255 }, |
256 { | 256 { |
257 name: "CSSMaskSourceType", | 257 name: "CSSMaskSourceType", |
258 status: "experimental", | 258 status: "experimental", |
259 }, | 259 }, |
260 { | 260 { |
261 name: "CSSOffsetPositionAnchor", | 261 name: "CSSOffsetPositionAnchor", |
262 status: "experimental", | 262 status: "experimental", |
263 }, | 263 }, |
264 { | 264 { |
265 name: "CSSOffsetRotate", | |
266 status: "stable", | |
267 }, | |
268 { | |
269 name: "CSSOffsetRotation", | |
270 status: "stable", | |
271 }, | |
272 { | |
273 name: "CSSOMSmoothScroll", | 265 name: "CSSOMSmoothScroll", |
274 status: "experimental", | 266 status: "experimental", |
275 }, | 267 }, |
276 { | 268 { |
277 name: "CSSPaintAPI", | 269 name: "CSSPaintAPI", |
278 depends_on: ["Worklet"], | 270 depends_on: ["Worklet"], |
279 status: "experimental", | 271 status: "experimental", |
280 }, | 272 }, |
281 { | 273 { |
282 name: "CSSPaintAPIArguments", | 274 name: "CSSPaintAPIArguments", |
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1058 { | 1050 { |
1059 name: "Worklet", | 1051 name: "Worklet", |
1060 status: "experimental", | 1052 status: "experimental", |
1061 }, | 1053 }, |
1062 { | 1054 { |
1063 name: "XSLT", | 1055 name: "XSLT", |
1064 status: "stable", | 1056 status: "stable", |
1065 }, | 1057 }, |
1066 ], | 1058 ], |
1067 } | 1059 } |
OLD | NEW |