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

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

Issue 1054303004: Sync CSS interfaces with the specs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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/CSSFontFaceRule.idl ('k') | Source/core/css/CSSKeyframeRule.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSImportRule.idl
diff --git a/Source/core/css/CSSImportRule.idl b/Source/core/css/CSSImportRule.idl
index f56ef9fc0f191758bdd91d15b4361b46dc2a22c2..e845ca26845b98a83f65af79b8a928e0c4bc1d2c 100644
--- a/Source/core/css/CSSImportRule.idl
+++ b/Source/core/css/CSSImportRule.idl
@@ -18,10 +18,11 @@
* Boston, MA 02110-1301, USA.
*/
-// Introduced in DOM Level 2:
+// http://dev.w3.org/csswg/cssom/#the-cssimportrule-interface
+
interface CSSImportRule : CSSRule {
- readonly attribute DOMString? href;
- readonly attribute MediaList media;
- readonly attribute CSSStyleSheet styleSheet;
+ readonly attribute DOMString href;
+ // TODO(philipj): media should have [PutForwards=mediaText].
+ [SameObject] readonly attribute MediaList media;
+ [SameObject] readonly attribute CSSStyleSheet styleSheet;
};
-
« no previous file with comments | « Source/core/css/CSSFontFaceRule.idl ('k') | Source/core/css/CSSKeyframeRule.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698