| Index: Source/core/html/HTMLStyleElement.idl
|
| diff --git a/Source/core/html/HTMLStyleElement.idl b/Source/core/html/HTMLStyleElement.idl
|
| index ecc6b2bd57d23f52ecd8ff8a1125318866292743..8163fd2b16015ffdf9b6c6c1380fe9b50aba025d 100644
|
| --- a/Source/core/html/HTMLStyleElement.idl
|
| +++ b/Source/core/html/HTMLStyleElement.idl
|
| @@ -18,11 +18,16 @@
|
| * Boston, MA 02110-1301, USA.
|
| */
|
|
|
| +// https://html.spec.whatwg.org/#the-style-element
|
| +
|
| interface HTMLStyleElement : HTMLElement {
|
| + // TODO(philipj): The disabled attribute has been removed from the spec:
|
| + // https://www.w3.org/Bugs/Public/show_bug.cgi?id=14703
|
| 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;
|
| };
|
|
|