diff --git a/css-cascade-5/Overview.bs b/css-cascade-5/Overview.bs
index daa5995e33c..303972752f2 100644
--- a/css-cascade-5/Overview.bs
+++ b/css-cascade-5/Overview.bs
@@ -31,6 +31,7 @@ Informative Classes: ex
spec:dom; type:dfn; text:shadow tree
spec:css-color-4; type:property; text:color
spec:css-values-3; type: value; text:ex
+spec:css-values-5; type: function; text:if()
spec:css-conditional-3; type:at-rule; text:@media
spec:mediaqueries-4; type:type; for:@media; text:all
spec:mediaqueries-4; type:type; text:
+Rolling Back Rules: the ''revert-rule'' keyword
+
+ The revert-rule [=CSS-wide keyword=]
+ rolls back the cascade similar to ''revert'' and ''revert-layer'',
+ except it works by [=style rule=]
+ rather than [=cascade origin=] or [=cascade layer=].
+
+ If the cascaded value of a property is the ''revert-rule'' keyword,
+ the cascaded value is rolled back
+ such that the specified value is calculated
+ as if the current [=style rule=] had not been present at all.
+
+
+ div {
+ border-radius: 5px;
+ }
+ .apply-sharp {
+ border-radius: if(style(--mode:sharp): 0px; else: revert-rule);
+ }
+
+
+ Given an element <div class=apply-sharp>,
+ the above style sets ''border-radius'' to 0px
+ only when the [=computed value=] of --mode
+ is sharp.
+
+ Layer APIs
@@ -2025,6 +2062,8 @@ Changes since the 13 Jan 2022 Candidate Recommendation Snapshot
Non-trivial changes since the 13 January 2022 Candidate Recommendation Snapshot:
+ * Added the ''revert-rule'' keyword.
+ (Issue 10443)
* Clarify that all “aliases” of a property are reverted by ''revert''/''revert-layer''.
* Clarify that style sheets are ordered in [[final CSS style sheets]] order.
* Clarify that only ''@layer'' statement rules are ignored when checking validity of ''@import'', not empty ''@layer'' block rules.