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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 }, | 508 }, |
509 { | 509 { |
510 name: "InstalledApp", | 510 name: "InstalledApp", |
511 status: "experimental", | 511 status: "experimental", |
512 }, | 512 }, |
513 { | 513 { |
514 name: "IntersectionObserver", | 514 name: "IntersectionObserver", |
515 status: "stable", | 515 status: "stable", |
516 }, | 516 }, |
517 { | 517 { |
| 518 name: "JSImageDecode", |
| 519 status: "test", |
| 520 }, |
| 521 { |
518 name: "LangAttributeAwareFormControlUI", | 522 name: "LangAttributeAwareFormControlUI", |
519 }, | 523 }, |
520 { | 524 { |
521 name: "LayoutNG", | 525 name: "LayoutNG", |
522 }, | 526 }, |
523 { | 527 { |
524 name: "LazyParseCSS", | 528 name: "LazyParseCSS", |
525 status: "experimental", | 529 status: "experimental", |
526 }, | 530 }, |
527 { | 531 { |
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1022 { | 1026 { |
1023 name: "Worklet", | 1027 name: "Worklet", |
1024 status: "experimental", | 1028 status: "experimental", |
1025 }, | 1029 }, |
1026 { | 1030 { |
1027 name: "XSLT", | 1031 name: "XSLT", |
1028 status: "stable", | 1032 status: "stable", |
1029 }, | 1033 }, |
1030 ], | 1034 ], |
1031 } | 1035 } |
OLD | NEW |