| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 }, | 246 }, |
| 247 { | 247 { |
| 248 name: "CSSLineBreak", | 248 name: "CSSLineBreak", |
| 249 status: "test", | 249 status: "test", |
| 250 }, | 250 }, |
| 251 { | 251 { |
| 252 name: "CSSMaskSourceType", | 252 name: "CSSMaskSourceType", |
| 253 status: "experimental", | 253 status: "experimental", |
| 254 }, | 254 }, |
| 255 { | 255 { |
| 256 name: "CSSOffsetPathRay", |
| 257 status: "experimental", |
| 258 }, |
| 259 { |
| 260 name: "CSSOffsetPathRayContain", |
| 261 status: "experimental", |
| 262 }, |
| 263 { |
| 256 name: "CSSOffsetPositionAnchor", | 264 name: "CSSOffsetPositionAnchor", |
| 257 status: "experimental", | 265 status: "experimental", |
| 258 }, | 266 }, |
| 259 { | 267 { |
| 260 name: "CSSOMSmoothScroll", | 268 name: "CSSOMSmoothScroll", |
| 261 status: "experimental", | 269 status: "experimental", |
| 262 }, | 270 }, |
| 263 { | 271 { |
| 264 name: "CSSPaintAPI", | 272 name: "CSSPaintAPI", |
| 265 depends_on: ["Worklet"], | 273 depends_on: ["Worklet"], |
| (...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1068 { | 1076 { |
| 1069 name: "Worklet", | 1077 name: "Worklet", |
| 1070 status: "experimental", | 1078 status: "experimental", |
| 1071 }, | 1079 }, |
| 1072 { | 1080 { |
| 1073 name: "XSLT", | 1081 name: "XSLT", |
| 1074 status: "stable", | 1082 status: "stable", |
| 1075 }, | 1083 }, |
| 1076 ], | 1084 ], |
| 1077 } | 1085 } |
| OLD | NEW |