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

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

Issue 790303002: Make CSSKeyframesRule function arguments non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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 | « LayoutTests/animations/keyframes-missing-arguments-expected.txt ('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 9176870da40f3ed19e4879264bb387cf39744aea..f67ea68d6d557d8900ae635f2fb9623142fdc7d4 100644
--- a/Source/core/css/CSSKeyframesRule.idl
+++ b/Source/core/css/CSSKeyframesRule.idl
@@ -32,8 +32,8 @@ interface CSSKeyframesRule : CSSRule {
readonly attribute CSSRuleList cssRules;
[ImplementedAs=item, NotEnumerable] getter CSSKeyframeRule (unsigned long index);
- [MeasureAs=CSSKeyframesRuleInsertRule] void insertRule([Default=Undefined] optional DOMString rule);
- [ImplementedAs=insertRule, MeasureAs=CSSKeyframesRuleAppendRule] void appendRule([Default=Undefined] optional DOMString rule);
- void deleteRule([Default=Undefined] optional DOMString key);
- CSSKeyframeRule findRule([Default=Undefined] optional DOMString key);
+ [MeasureAs=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 | « LayoutTests/animations/keyframes-missing-arguments-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698