| 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 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 { | 827 { |
| 828 name: "RestrictCanRequestURLCharacterSet", | 828 name: "RestrictCanRequestURLCharacterSet", |
| 829 status: "experimental", | 829 status: "experimental", |
| 830 }, | 830 }, |
| 831 // Handles frame scrolling via the root PaintLayer instead of the FrameView. | 831 // Handles frame scrolling via the root PaintLayer instead of the FrameView. |
| 832 // crbug.com/417782 tracks enabling this by default. | 832 // crbug.com/417782 tracks enabling this by default. |
| 833 { | 833 { |
| 834 name: "RootLayerScrolling", | 834 name: "RootLayerScrolling", |
| 835 }, | 835 }, |
| 836 { | 836 { |
| 837 name: "RTCRtpSender", |
| 838 status: "experimental", |
| 839 }, |
| 840 { |
| 837 name: "ScriptedSpeech", | 841 name: "ScriptedSpeech", |
| 838 status: "stable", | 842 status: "stable", |
| 839 }, | 843 }, |
| 840 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). | 844 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). |
| 841 { | 845 { |
| 842 name: "ScrollAnchoring", | 846 name: "ScrollAnchoring", |
| 843 settable_from_internals: true, | 847 settable_from_internals: true, |
| 844 status: "experimental", | 848 status: "experimental", |
| 845 }, | 849 }, |
| 846 { | 850 { |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 name: "WebAnimationsAPI", | 993 name: "WebAnimationsAPI", |
| 990 status: "experimental", | 994 status: "experimental", |
| 991 }, | 995 }, |
| 992 { | 996 { |
| 993 name: "WebAnimationsSVG", | 997 name: "WebAnimationsSVG", |
| 994 status: "experimental", | 998 status: "experimental", |
| 995 }, | 999 }, |
| 996 { | 1000 { |
| 997 name: "WebAssemblyStreaming", | 1001 name: "WebAssemblyStreaming", |
| 998 status: "experimental", | 1002 status: "experimental", |
| 999 }, | 1003 }, |
| 1000 { | 1004 { |
| 1001 name: "WebAuth", | 1005 name: "WebAuth", |
| 1002 status: "experimental", | 1006 status: "experimental", |
| 1003 }, | 1007 }, |
| 1004 // WebBluetooth is enabled by default on Android, ChromeOS and Mac. | 1008 // WebBluetooth is enabled by default on Android, ChromeOS and Mac. |
| 1005 { | 1009 { |
| 1006 name: "WebBluetooth", | 1010 name: "WebBluetooth", |
| 1007 status: "experimental", | 1011 status: "experimental", |
| 1008 }, | 1012 }, |
| 1009 { | 1013 { |
| (...skipping 52 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 |