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

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

Issue 2572003003: NOT FOR SUBMIT: use counters for jdm@
Patch Set: Merge branch 'jdm-usecounters' into jdm-merge Created 4 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
Index: third_party/WebKit/Source/core/css/CSSKeyframesRule.idl
diff --git a/third_party/WebKit/Source/core/css/CSSKeyframesRule.idl b/third_party/WebKit/Source/core/css/CSSKeyframesRule.idl
index 0e88b1f1453f06974e3dd10d5a3dfe4a9a90762c..a90b1e74a1d8dd0e51b9dbae17482603e2ac378a 100644
--- a/third_party/WebKit/Source/core/css/CSSKeyframesRule.idl
+++ b/third_party/WebKit/Source/core/css/CSSKeyframesRule.idl
@@ -29,12 +29,12 @@
// https://dev.w3.org/csswg/css-animations/#interface-csskeyframesrule
interface CSSKeyframesRule : CSSRule {
- attribute DOMString name;
- readonly attribute CSSRuleList cssRules;
+ [Measure] attribute DOMString name;
+ [Measure] readonly attribute CSSRuleList cssRules;
- void appendRule(DOMString rule);
- void deleteRule(DOMString select);
- CSSKeyframeRule? findRule(DOMString select);
+ [Measure] void appendRule(DOMString rule);
+ [Measure] void deleteRule(DOMString select);
+ [Measure] CSSKeyframeRule? findRule(DOMString select);
// Non-standard APIs
[NotEnumerable] getter CSSKeyframeRule (unsigned long index);
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSKeyframeRule.idl ('k') | third_party/WebKit/Source/core/css/CSSMediaRule.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698