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

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

Issue 2881673003: CSS Motion Path: Support parsing of ray(<angle>) paths (Closed)
Patch Set: DCHECK_EQ Created 3 years, 7 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 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 }, 246 },
247 { 247 {
248 name: "CSSLineBreak", 248 name: "CSSLineBreak",
249 status: "test", 249 status: "test",
250 }, 250 },
251 { 251 {
252 name: "CSSMaskSourceType", 252 name: "CSSMaskSourceType",
253 status: "experimental", 253 status: "experimental",
254 }, 254 },
255 { 255 {
256 name: "CSSOffsetPathRay",
257 status: "experimental",
258 },
259 {
260 name: "CSSOffsetPathRayContain",
261 status: "experimental",
262 },
263 {
256 name: "CSSOffsetPositionAnchor", 264 name: "CSSOffsetPositionAnchor",
257 status: "experimental", 265 status: "experimental",
258 }, 266 },
259 { 267 {
260 name: "CSSOMSmoothScroll", 268 name: "CSSOMSmoothScroll",
261 status: "experimental", 269 status: "experimental",
262 }, 270 },
263 { 271 {
264 name: "CSSPaintAPI", 272 name: "CSSPaintAPI",
265 depends_on: ["Worklet"], 273 depends_on: ["Worklet"],
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 { 1076 {
1069 name: "Worklet", 1077 name: "Worklet",
1070 status: "experimental", 1078 status: "experimental",
1071 }, 1079 },
1072 { 1080 {
1073 name: "XSLT", 1081 name: "XSLT",
1074 status: "stable", 1082 status: "stable",
1075 }, 1083 },
1076 ], 1084 ],
1077 } 1085 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698