Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(433)

Unified Diff: Source/core/css/CSSKeyframesRule.idl

Issue 1054303004: Sync CSS interfaces with the specs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/CSSKeyframeRule.idl ('k') | Source/core/css/CSSMediaRule.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSKeyframesRule.idl
diff --git a/Source/core/css/CSSKeyframesRule.idl b/Source/core/css/CSSKeyframesRule.idl
index 09fbfb58b048227cd1dd167765ff0fcf8cca91a5..28835321159cf8ca7390edc866f7772259f24132 100644
--- a/Source/core/css/CSSKeyframesRule.idl
+++ b/Source/core/css/CSSKeyframesRule.idl
@@ -26,14 +26,17 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-// Introduced in DOM Level ?:
+// http://dev.w3.org/csswg/css-animations/#interface-csskeyframesrule
+
interface CSSKeyframesRule : CSSRule {
attribute DOMString name;
readonly attribute CSSRuleList cssRules;
+ [ImplementedAs=insertRule, MeasureAs=CSSKeyframesRuleAppendRule] void appendRule(DOMString rule);
+ void deleteRule(DOMString select);
+ CSSKeyframeRule? findRule(DOMString select);
+
+ // Non-standard APIs
[ImplementedAs=item, NotEnumerable] getter CSSKeyframeRule (unsigned long index);
[DeprecateAs=CSSKeyframesRuleInsertRule] void insertRule(DOMString rule);
- [ImplementedAs=insertRule, MeasureAs=CSSKeyframesRuleAppendRule] void appendRule(DOMString rule);
- void deleteRule(DOMString key);
- CSSKeyframeRule? findRule(DOMString key);
};
« no previous file with comments | « Source/core/css/CSSKeyframeRule.idl ('k') | Source/core/css/CSSMediaRule.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698