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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 }, | 386 }, |
387 { | 387 { |
388 name: "ExperimentalV8Extras", | 388 name: "ExperimentalV8Extras", |
389 status: "experimental", | 389 status: "experimental", |
390 }, | 390 }, |
391 { | 391 { |
392 name: "FastMobileScrolling", | 392 name: "FastMobileScrolling", |
393 }, | 393 }, |
394 { | 394 { |
395 name: "FeaturePolicy", | 395 name: "FeaturePolicy", |
| 396 implied_by: ["WebUSB"], |
396 status: "experimental", | 397 status: "experimental", |
397 }, | 398 }, |
398 { | 399 { |
399 name: "FeaturePolicyExperimentalFeatures", | 400 name: "FeaturePolicyExperimentalFeatures", |
400 status: "experimental", | 401 status: "experimental", |
401 }, | 402 }, |
402 { | 403 { |
403 name:"FetchRequestCache", | 404 name:"FetchRequestCache", |
404 status: "experimental", | 405 status: "experimental", |
405 }, | 406 }, |
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1057 { | 1058 { |
1058 name: "Worklet", | 1059 name: "Worklet", |
1059 status: "experimental", | 1060 status: "experimental", |
1060 }, | 1061 }, |
1061 { | 1062 { |
1062 name: "XSLT", | 1063 name: "XSLT", |
1063 status: "stable", | 1064 status: "stable", |
1064 }, | 1065 }, |
1065 ], | 1066 ], |
1066 } | 1067 } |
OLD | NEW |