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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
790 { | 790 { |
791 name: "RestrictCompleteURLCharacterSet", | 791 name: "RestrictCompleteURLCharacterSet", |
792 status: "experimental", | 792 status: "experimental", |
793 }, | 793 }, |
794 // Handles frame scrolling via the root PaintLayer instead of the FrameView. | 794 // Handles frame scrolling via the root PaintLayer instead of the FrameView. |
795 // crbug.com/417782 tracks enabling this by default. | 795 // crbug.com/417782 tracks enabling this by default. |
796 { | 796 { |
797 name: "RootLayerScrolling", | 797 name: "RootLayerScrolling", |
798 }, | 798 }, |
799 { | 799 { |
800 name: "RTCRtpReceiver", | |
801 status: "experimental", | |
802 }, | |
803 { | |
800 name: "ScriptedSpeech", | 804 name: "ScriptedSpeech", |
801 status: "stable", | 805 status: "stable", |
802 }, | 806 }, |
803 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). | 807 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). |
804 { | 808 { |
805 name: "ScrollAnchoring", | 809 name: "ScrollAnchoring", |
806 settable_from_internals: true, | 810 settable_from_internals: true, |
807 status: "experimental", | 811 status: "experimental", |
808 }, | 812 }, |
809 { | 813 { |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1021 name: "WebVTTRegions", | 1025 name: "WebVTTRegions", |
1022 status: "experimental", | 1026 status: "experimental", |
1023 }, | 1027 }, |
1024 { | 1028 { |
1025 name: "Worklet", | 1029 name: "Worklet", |
1026 status: "experimental", | 1030 status: "experimental", |
1027 }, | 1031 }, |
1028 { | 1032 { |
1029 name: "XSLT", | 1033 name: "XSLT", |
1030 status: "stable", | 1034 status: "stable", |
1031 }, | 1035 } |
foolip
2017/03/29 10:07:58
That comma wasn't accidental, it's so that adding
hbos_chromium
2017/03/29 13:50:13
Done.
| |
1032 ], | 1036 ], |
1033 } | 1037 } |
OLD | NEW |