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

Unified Diff: Source/core/html/HTMLLinkElement.idl

Issue 996833002: Sync the HTMLL*Element interfaces with the spec (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/html/HTMLLegendElement.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLLinkElement.idl
diff --git a/Source/core/html/HTMLLinkElement.idl b/Source/core/html/HTMLLinkElement.idl
index a31a5eff56f0df84749cddbf0f4ebe0afc378ec3..7130b97dc8bcaf6593a0670725058dcd5813361d 100644
--- a/Source/core/html/HTMLLinkElement.idl
+++ b/Source/core/html/HTMLLinkElement.idl
@@ -19,23 +19,36 @@
* Boston, MA 02110-1301, USA.
*/
+// https://html.spec.whatwg.org/#htmllinkelement
+
interface HTMLLinkElement : HTMLElement {
+ // FIXME: The disabled attribute has been removed from the spec:
+ // https://www.w3.org/Bugs/Public/show_bug.cgi?id=14703
[Reflect] attribute boolean disabled;
- [Reflect] attribute DOMString charset;
[Reflect, URL] attribute DOMString href;
[Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin;
- [Reflect] attribute DOMString hreflang;
- [Reflect] attribute DOMString media;
[Reflect] attribute DOMString rel;
- [Reflect] attribute DOMString rev;
+ // FIXME: readonly attribute DOMTokenList relList;
+ [Reflect] attribute DOMString media;
+ [Reflect] attribute DOMString hreflang;
+ [Reflect] attribute DOMString type;
[PutForwards=value] readonly attribute DOMSettableTokenList sizes;
+
+ // obsolete members
+ // https://html.spec.whatwg.org/#HTMLLinkElement-partial
+ [Reflect] attribute DOMString charset;
+ [Reflect] attribute DOMString rev;
[Reflect] attribute DOMString target;
- [Reflect] attribute DOMString type;
- // DOM Level 2 Style
- readonly attribute StyleSheet sheet;
+ // HTMLLinkElement implements LinkStyle
+ // http://dev.w3.org/csswg/cssom/#the-linkstyle-interface
+ readonly attribute StyleSheet? sheet;
- readonly attribute Document import;
+ // HTML Imports
+ // https://w3c.github.io/webcomponents/spec/imports/#interface-import
+ readonly attribute Document? import;
+ // Subresource Integrity
+ // http://w3c.github.io/webappsec/specs/subresourceintegrity/#htmllinkelement-1
[Reflect, RuntimeEnabled=SubresourceIntegrity] attribute DOMString integrity;
};
« no previous file with comments | « Source/core/html/HTMLLegendElement.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698