Commit c17a274f authored by Vladimir Levin's avatar Vladimir Levin Committed by Commit Bot

DL: Switch depends_on to implied_by for DisplayLocking/CSSContentSize.

depends_on means that the feature is only enabled if the depended-on
feature is enabled. implied_by means that the feature is automatically
enabled when the implied-by feature is enabled.

We want CSSContentSize to be implied-by DisplayLocking, not DisplayLocking
to depend-on CSSContentSize.

R=chrishtr@chromium.org, rakina@chromium.org

Change-Id: I39f908dee3d7a0b99d1f727b41f76ae3c1a8efcd
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1863564
Commit-Queue: Chris Harrelson <chrishtr@chromium.org>
Reviewed-by: default avatarRakina Zata Amni <rakina@chromium.org>
Reviewed-by: default avatarChris Harrelson <chrishtr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#706545}
parent 63bc6538
...@@ -395,6 +395,7 @@ ...@@ -395,6 +395,7 @@
// Support for CSS content-size property. // Support for CSS content-size property.
// http://tabatkins.github.io/specs/css-content-size/ // http://tabatkins.github.io/specs/css-content-size/
name: "CSSContentSize", name: "CSSContentSize",
implied_by: ["DisplayLocking"],
status: "experimental", status: "experimental",
}, },
{ {
...@@ -544,7 +545,6 @@ ...@@ -544,7 +545,6 @@
{ {
name: "DisplayLocking", name: "DisplayLocking",
origin_trial_feature_name: "DisplayLocking", origin_trial_feature_name: "DisplayLocking",
depends_on: ["CSSContentSize"],
status: "experimental", status: "experimental",
}, },
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment