| 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 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 807 { | 807 { |
| 808 name: "RestrictCanRequestURLCharacterSet", | 808 name: "RestrictCanRequestURLCharacterSet", |
| 809 status: "experimental", | 809 status: "experimental", |
| 810 }, | 810 }, |
| 811 // Handles frame scrolling via the root PaintLayer instead of the FrameView. | 811 // Handles frame scrolling via the root PaintLayer instead of the FrameView. |
| 812 // crbug.com/417782 tracks enabling this by default. | 812 // crbug.com/417782 tracks enabling this by default. |
| 813 { | 813 { |
| 814 name: "RootLayerScrolling", | 814 name: "RootLayerScrolling", |
| 815 }, | 815 }, |
| 816 { | 816 { |
| 817 name: "RTCRtpReceiver", | |
| 818 status: "experimental", | |
| 819 }, | |
| 820 { | |
| 821 name: "ScriptedSpeech", | 817 name: "ScriptedSpeech", |
| 822 status: "stable", | 818 status: "stable", |
| 823 }, | 819 }, |
| 824 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). | 820 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). |
| 825 { | 821 { |
| 826 name: "ScrollAnchoring", | 822 name: "ScrollAnchoring", |
| 827 settable_from_internals: true, | 823 settable_from_internals: true, |
| 828 status: "experimental", | 824 status: "experimental", |
| 829 }, | 825 }, |
| 830 { | 826 { |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1039 { | 1035 { |
| 1040 name: "Worklet", | 1036 name: "Worklet", |
| 1041 status: "experimental", | 1037 status: "experimental", |
| 1042 }, | 1038 }, |
| 1043 { | 1039 { |
| 1044 name: "XSLT", | 1040 name: "XSLT", |
| 1045 status: "stable", | 1041 status: "stable", |
| 1046 }, | 1042 }, |
| 1047 ], | 1043 ], |
| 1048 } | 1044 } |
| OLD | NEW |