Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: third_party/WebKit/Source/platform/RuntimeEnabledFeatures.json5

Issue 2769793002: Implement CSS: scroll-boundary-behavior (Closed)
Patch Set: Add documentation Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 9 // * status=stable: Enable this in all Blink configurations. We are
10 // committed to these APIs indefinitely. 10 // committed to these APIs indefinitely.
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 name: "CSSPaintAPI", 295 name: "CSSPaintAPI",
296 depends_on: ["Worklet"], 296 depends_on: ["Worklet"],
297 status: "experimental", 297 status: "experimental",
298 }, 298 },
299 { 299 {
300 name: "CSSPaintAPIArguments", 300 name: "CSSPaintAPIArguments",
301 depends_on: ["CSSPaintAPI"], 301 depends_on: ["CSSPaintAPI"],
302 status: "experimental", 302 status: "experimental",
303 }, 303 },
304 { 304 {
305 name: "CSSScrollBoundaryBehavior",
306 status: "experimental",
307 },
308 {
305 name: "CSSScrollSnapPoints", 309 name: "CSSScrollSnapPoints",
306 status: "test", 310 status: "test",
307 }, 311 },
308 { 312 {
309 name: "CSSSelectorsFocusWithin", 313 name: "CSSSelectorsFocusWithin",
310 status: "stable", 314 status: "stable",
311 }, 315 },
312 { 316 {
313 name: "CSSSnapSize", 317 name: "CSSSnapSize",
314 status: "experimental", 318 status: "experimental",
(...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after
1147 { 1151 {
1148 name: "Worklet", 1152 name: "Worklet",
1149 status: "experimental", 1153 status: "experimental",
1150 }, 1154 },
1151 { 1155 {
1152 name: "XSLT", 1156 name: "XSLT",
1153 status: "stable", 1157 status: "stable",
1154 }, 1158 },
1155 ], 1159 ],
1156 } 1160 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698