pub(crate) trait CSSKeyframesRuleMethods<D: DomTypes> {
// Required methods
fn Name(&self) -> DOMString;
fn SetName(&self, value: DOMString) -> ErrorResult;
fn CssRules(&self, _can_gc: CanGc) -> DomRoot<D::CSSRuleList>;
fn AppendRule(&self, rule: DOMString, _can_gc: CanGc);
fn DeleteRule(&self, select: DOMString, _can_gc: CanGc);
fn FindRule(
&self,
select: DOMString,
_can_gc: CanGc,
) -> Option<DomRoot<D::CSSKeyframeRule>>;
}