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

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

Issue 1980553002: bindings: Supports [SameObject] extended attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed layouttests. Created 4 years, 7 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
Index: third_party/WebKit/Source/core/css/CSSImportRule.idl
diff --git a/third_party/WebKit/Source/core/css/CSSImportRule.idl b/third_party/WebKit/Source/core/css/CSSImportRule.idl
index e845ca26845b98a83f65af79b8a928e0c4bc1d2c..08b1144506c73ca204fd35476c3c581852f09d63 100644
--- a/third_party/WebKit/Source/core/css/CSSImportRule.idl
+++ b/third_party/WebKit/Source/core/css/CSSImportRule.idl
@@ -24,5 +24,6 @@ interface CSSImportRule : CSSRule {
readonly attribute DOMString href;
// TODO(philipj): media should have [PutForwards=mediaText].
[SameObject] readonly attribute MediaList media;
- [SameObject] readonly attribute CSSStyleSheet styleSheet;
+ // TODO(yukishiino): styleSheet attribute must be [SameObject].
+ readonly attribute CSSStyleSheet styleSheet;
};

Powered by Google App Engine
This is Rietveld 408576698