| 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 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 820 { | 820 { |
| 821 name: "RestrictCanRequestURLCharacterSet", | 821 name: "RestrictCanRequestURLCharacterSet", |
| 822 status: "experimental", | 822 status: "experimental", |
| 823 }, | 823 }, |
| 824 // Handles frame scrolling via the root PaintLayer instead of the FrameView. | 824 // Handles frame scrolling via the root PaintLayer instead of the FrameView. |
| 825 // crbug.com/417782 tracks enabling this by default. | 825 // crbug.com/417782 tracks enabling this by default. |
| 826 { | 826 { |
| 827 name: "RootLayerScrolling", | 827 name: "RootLayerScrolling", |
| 828 }, | 828 }, |
| 829 { | 829 { |
| 830 name: "RTCRtpSender", |
| 831 status: "experimental", |
| 832 }, |
| 833 { |
| 830 name: "ScriptedSpeech", | 834 name: "ScriptedSpeech", |
| 831 status: "stable", | 835 status: "stable", |
| 832 }, | 836 }, |
| 833 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). | 837 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). |
| 834 { | 838 { |
| 835 name: "ScrollAnchoring", | 839 name: "ScrollAnchoring", |
| 836 settable_from_internals: true, | 840 settable_from_internals: true, |
| 837 status: "experimental", | 841 status: "experimental", |
| 838 }, | 842 }, |
| 839 { | 843 { |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1062 { | 1066 { |
| 1063 name: "Worklet", | 1067 name: "Worklet", |
| 1064 status: "experimental", | 1068 status: "experimental", |
| 1065 }, | 1069 }, |
| 1066 { | 1070 { |
| 1067 name: "XSLT", | 1071 name: "XSLT", |
| 1068 status: "stable", | 1072 status: "stable", |
| 1069 }, | 1073 }, |
| 1070 ], | 1074 ], |
| 1071 } | 1075 } |
| OLD | NEW |