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 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
794 { | 794 { |
795 name: "RestrictCompleteURLCharacterSet", | 795 name: "RestrictCompleteURLCharacterSet", |
796 status: "experimental", | 796 status: "experimental", |
797 }, | 797 }, |
798 // Handles frame scrolling via the root PaintLayer instead of the FrameView. | 798 // Handles frame scrolling via the root PaintLayer instead of the FrameView. |
799 // crbug.com/417782 tracks enabling this by default. | 799 // crbug.com/417782 tracks enabling this by default. |
800 { | 800 { |
801 name: "RootLayerScrolling", | 801 name: "RootLayerScrolling", |
802 }, | 802 }, |
803 { | 803 { |
| 804 name: "RTCRtpReceiver", |
| 805 status: "experimental", |
| 806 }, |
| 807 { |
804 name: "ScriptedSpeech", | 808 name: "ScriptedSpeech", |
805 status: "stable", | 809 status: "stable", |
806 }, | 810 }, |
807 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). | 811 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). |
808 { | 812 { |
809 name: "ScrollAnchoring", | 813 name: "ScrollAnchoring", |
810 settable_from_internals: true, | 814 settable_from_internals: true, |
811 status: "experimental", | 815 status: "experimental", |
812 }, | 816 }, |
813 { | 817 { |
(...skipping 208 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 |