diff --git a/components/style/values/specified/animation.rs b/components/style/values/specified/animation.rs index d832cd5aa63..ad4fbc587c1 100644 --- a/components/style/values/specified/animation.rs +++ b/components/style/values/specified/animation.rs @@ -205,7 +205,9 @@ pub enum Scroller { Nearest, /// The document viewport as the scroll container. Root, - // FIXME: Bug 1814444. Support self keyword. + /// Specifies to use the element’s own principal box as the scroll container. + #[css(keyword = "self")] + SelfElement, } impl Scroller {