| 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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 }, | 390 }, |
| 391 { | 391 { |
| 392 name: "ExperimentalV8Extras", | 392 name: "ExperimentalV8Extras", |
| 393 status: "experimental", | 393 status: "experimental", |
| 394 }, | 394 }, |
| 395 { | 395 { |
| 396 name: "FastMobileScrolling", | 396 name: "FastMobileScrolling", |
| 397 }, | 397 }, |
| 398 { | 398 { |
| 399 name: "FeaturePolicy", | 399 name: "FeaturePolicy", |
| 400 implied_by: ["WebUSB"], |
| 400 status: "experimental", | 401 status: "experimental", |
| 401 }, | 402 }, |
| 402 { | 403 { |
| 403 name: "FeaturePolicyExperimentalFeatures", | 404 name: "FeaturePolicyExperimentalFeatures", |
| 404 status: "experimental", | 405 status: "experimental", |
| 405 }, | 406 }, |
| 406 { | 407 { |
| 407 name:"FetchRequestCache", | 408 name:"FetchRequestCache", |
| 408 status: "experimental", | 409 status: "experimental", |
| 409 }, | 410 }, |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1061 { | 1062 { |
| 1062 name: "Worklet", | 1063 name: "Worklet", |
| 1063 status: "experimental", | 1064 status: "experimental", |
| 1064 }, | 1065 }, |
| 1065 { | 1066 { |
| 1066 name: "XSLT", | 1067 name: "XSLT", |
| 1067 status: "stable", | 1068 status: "stable", |
| 1068 }, | 1069 }, |
| 1069 ], | 1070 ], |
| 1070 } | 1071 } |
| OLD | NEW |