| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 { | 116 { |
| 117 name: "BlockLegacySubresources", | 117 name: "BlockLegacySubresources", |
| 118 status: "stable", | 118 status: "stable", |
| 119 }, | 119 }, |
| 120 { | 120 { |
| 121 name: "BroadcastChannel", | 121 name: "BroadcastChannel", |
| 122 status: "stable", | 122 status: "stable", |
| 123 }, | 123 }, |
| 124 { | 124 { |
| 125 name: "Budget", | 125 name: "Budget", |
| 126 status: "stable", |
| 127 }, |
| 128 { |
| 129 name: "BudgetQuery", |
| 130 origin_trial_feature_name: "BudgetQuery", |
| 126 status: "experimental", | 131 status: "experimental", |
| 127 }, | 132 }, |
| 128 { | 133 { |
| 129 name: "CanMakePayment", | 134 name: "CanMakePayment", |
| 130 status: "stable", | 135 status: "stable", |
| 131 }, | 136 }, |
| 132 { | 137 { |
| 133 name: "Canvas2dFixedRenderingMode", | 138 name: "Canvas2dFixedRenderingMode", |
| 134 status: "test", | 139 status: "test", |
| 135 }, | 140 }, |
| (...skipping 950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1086 { | 1091 { |
| 1087 name: "Worklet", | 1092 name: "Worklet", |
| 1088 status: "experimental", | 1093 status: "experimental", |
| 1089 }, | 1094 }, |
| 1090 { | 1095 { |
| 1091 name: "XSLT", | 1096 name: "XSLT", |
| 1092 status: "stable", | 1097 status: "stable", |
| 1093 }, | 1098 }, |
| 1094 ], | 1099 ], |
| 1095 } | 1100 } |
| OLD | NEW |