| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 }, | 59 }, |
| 60 }, | 60 }, |
| 61 | 61 |
| 62 data: [ | 62 data: [ |
| 63 { | 63 { |
| 64 name: "Accelerated2dCanvas", | 64 name: "Accelerated2dCanvas", |
| 65 settable_from_internals: true, | 65 settable_from_internals: true, |
| 66 status: "stable", | 66 status: "stable", |
| 67 }, | 67 }, |
| 68 { | 68 { |
| 69 name: "AsyncClipboard", |
| 70 status: "experimental", |
| 71 }, |
| 72 { |
| 69 name: "AudioOutputDevices", | 73 name: "AudioOutputDevices", |
| 70 status: "stable", | 74 status: "stable", |
| 71 }, | 75 }, |
| 72 { | 76 { |
| 73 name: "AudioVideoTracks", | 77 name: "AudioVideoTracks", |
| 74 status: "experimental", | 78 status: "experimental", |
| 75 }, | 79 }, |
| 76 { | 80 { |
| 77 name: "AudioWorklet", | 81 name: "AudioWorklet", |
| 78 status: "experimental", | 82 status: "experimental", |
| (...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1001 { | 1005 { |
| 1002 name: "UnclosedFormControlIsInvalid", | 1006 name: "UnclosedFormControlIsInvalid", |
| 1003 status: "experimental", | 1007 status: "experimental", |
| 1004 }, | 1008 }, |
| 1005 { | 1009 { |
| 1006 name: "RestrictCompleteURLCharacterSet", | 1010 name: "RestrictCompleteURLCharacterSet", |
| 1007 status: "experimental", | 1011 status: "experimental", |
| 1008 }, | 1012 }, |
| 1009 ], | 1013 ], |
| 1010 } | 1014 } |
| OLD | NEW |