forked from mirrors/gecko-dev
<!-- Please describe your changes on the following line: --> Implementation of CSSKeyframesRule.name --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors <!-- Either: --> - [X] There are tests for these changes <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Source-Repo: https://github.com/servo/servo Source-Revision: a2391162a12c5cfa00872ead33a1551d82c46594
15 lines
577 B
Text
15 lines
577 B
Text
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
// https://drafts.csswg.org/css-animations/#interface-csskeyframesrule
|
|
[Exposed=Window]
|
|
interface CSSKeyframesRule : CSSRule {
|
|
[SetterThrows]
|
|
attribute DOMString name;
|
|
readonly attribute CSSRuleList cssRules;
|
|
|
|
void appendRule(DOMString rule);
|
|
void deleteRule(DOMString select);
|
|
CSSKeyframeRule? findRule(DOMString select);
|
|
};
|