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

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

Issue 2769793002: Implement CSS: scroll-boundary-behavior (Closed)
Patch Set: Update promises tests and Scroll Manager 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 840 matching lines...) Expand 10 before | Expand all | Expand 10 after
1155 { 1159 {
1156 name: "Worklet", 1160 name: "Worklet",
1157 status: "experimental", 1161 status: "experimental",
1158 }, 1162 },
1159 { 1163 {
1160 name: "XSLT", 1164 name: "XSLT",
1161 status: "stable", 1165 status: "stable",
1162 }, 1166 },
1163 ], 1167 ],
1164 } 1168 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698