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

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

Issue 1091283005: Make CSSKeyframesRule.insertRule an alias of appendRule (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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/CSSKeyframesRule.cpp ('k') | no next file » | 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 28835321159cf8ca7390edc866f7772259f24132..c138ab03e43aa5eaae0fbf195116cb7b0c8a9a55 100644
--- a/Source/core/css/CSSKeyframesRule.idl
+++ b/Source/core/css/CSSKeyframesRule.idl
@@ -32,11 +32,11 @@ interface CSSKeyframesRule : CSSRule {
attribute DOMString name;
readonly attribute CSSRuleList cssRules;
- [ImplementedAs=insertRule, MeasureAs=CSSKeyframesRuleAppendRule] void appendRule(DOMString rule);
+ [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);
+ [DeprecateAs=CSSKeyframesRuleInsertRule, ImplementedAs=appendRule] void insertRule(DOMString rule);
};
« no previous file with comments | « Source/core/css/CSSKeyframesRule.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698