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

Unified Diff: core/css/CSSStyleSheet.idl

Issue 155973006: Roll IDL to 1750 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 6 years, 10 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 | « core/css/CSSStyleRule.idl ('k') | core/css/CSSValue.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/css/CSSStyleSheet.idl
diff --git a/core/css/CSSStyleSheet.idl b/core/css/CSSStyleSheet.idl
index 06ca95b274d47b012ca70ca667fd9e616adb132d..a9b090079670449bdc5fc500e2b5e96aa6917f79 100644
--- a/core/css/CSSStyleSheet.idl
+++ b/core/css/CSSStyleSheet.idl
@@ -20,7 +20,7 @@
// Introduced in DOM Level 2:
[
- GenerateIsReachable=ownerNode
+ GenerateVisitDOMWrapper=ownerNode,
] interface CSSStyleSheet : StyleSheet {
readonly attribute CSSRule ownerRule;
readonly attribute CSSRuleList cssRules;
@@ -29,11 +29,10 @@
[RaisesException] void deleteRule(unsigned long index);
// IE Extensions
- readonly attribute CSSRuleList rules;
+ [MeasureAs=CSSStyleSheetRules] readonly attribute CSSRuleList rules;
- [RaisesException] long addRule([Default=Undefined] optional DOMString selector,
- [Default=Undefined] optional DOMString style,
- optional unsigned long index);
- [RaisesException] void removeRule([Default=Undefined] optional unsigned long index);
+ [RaisesException, MeasureAs=CSSStyleSheetAddRule] long addRule([Default=Undefined] optional DOMString selector,
+ [Default=Undefined] optional DOMString style,
+ optional unsigned long index);
+ [RaisesException, MeasureAs=CSSStyleSheetRemoveRule] void removeRule([Default=Undefined] optional unsigned long index);
};
-
« no previous file with comments | « core/css/CSSStyleRule.idl ('k') | core/css/CSSValue.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698