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

Unified Diff: core/html/HTMLStyleElement.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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/html/HTMLSpanElement.idl ('k') | core/html/HTMLTableCaptionElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLStyleElement.idl
diff --git a/core/html/HTMLStyleElement.idl b/core/html/HTMLStyleElement.idl
index ecc6b2bd57d23f52ecd8ff8a1125318866292743..8c035ff359887f53db07113105befbd38c44ee54 100644
--- a/core/html/HTMLStyleElement.idl
+++ b/core/html/HTMLStyleElement.idl
@@ -18,11 +18,16 @@
* Boston, MA 02110-1301, USA.
*/
+// https://html.spec.whatwg.org/#the-style-element
+
interface HTMLStyleElement : HTMLElement {
- attribute boolean disabled;
+ // TODO(philipj): The disabled attribute has been removed from the spec:
+ // https://www.w3.org/Bugs/Public/show_bug.cgi?id=14703
+ [Measure] attribute boolean disabled;
[Reflect] attribute DOMString media;
[Reflect] attribute DOMString type;
- // DOM Level 2 Style
- readonly attribute StyleSheet sheet;
+ // HTMLStyleElement implements LinkStyle
+ // http://dev.w3.org/csswg/cssom/#the-linkstyle-interface
+ readonly attribute StyleSheet? sheet;
};
« no previous file with comments | « core/html/HTMLSpanElement.idl ('k') | core/html/HTMLTableCaptionElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698