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

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

Issue 1173363004: Expose CSSGroupingRule (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updating testcases Created 5 years, 6 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/CSSGroupingRule.h ('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/CSSGroupingRule.idl
diff --git a/Source/core/dom/Comment.idl b/Source/core/css/CSSGroupingRule.idl
similarity index 68%
copy from Source/core/dom/Comment.idl
copy to Source/core/css/CSSGroupingRule.idl
index 6ecf8f0c26eefc124e6d581d04805c90e9f0cb15..6aa512172d1fc5c1f12a8e7032efb47cd3657d9e 100644
--- a/Source/core/dom/Comment.idl
+++ b/Source/core/css/CSSGroupingRule.idl
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
+ * Copyright (C) 2015 Samsung Electronics. All rights reserved.
Timothy Loh 2015/06/15 07:52:15 https://www.chromium.org/blink/coding-style#TOC-Li
ramya.v 2015/06/15 08:33:18 Done.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -17,10 +17,10 @@
* Boston, MA 02110-1301, USA.
*/
-// https://dom.spec.whatwg.org/#interface-comment
+// http://dev.w3.org/csswg/cssom/#the-cssgroupingrule-interface
-[
- Constructor(optional DOMString data = ""),
- ConstructorCallWith=Document,
-] interface Comment : CharacterData {
+interface CSSGroupingRule : CSSRule {
+ [SameObject] readonly attribute CSSRuleList cssRules;
+ [RaisesException] unsigned long insertRule(DOMString rule, unsigned long index);
+ [RaisesException] void deleteRule(unsigned long index);
};
« no previous file with comments | « Source/core/css/CSSGroupingRule.h ('k') | Source/core/css/CSSMediaRule.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698