Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLLinkElement.idl
index 73c2426..a31a5ef 100644 (file)
@@ -22,7 +22,8 @@
 interface HTMLLinkElement : HTMLElement {
     [Reflect] attribute boolean disabled;
     [Reflect] attribute DOMString charset;
-    [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString href;
+    [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;
@@ -34,5 +35,7 @@ interface HTMLLinkElement : HTMLElement {
     // DOM Level 2 Style
     readonly attribute StyleSheet sheet;
 
-    [RuntimeEnabled=HTMLImports] readonly attribute Document import;
+    readonly attribute Document import;
+
+    [Reflect, RuntimeEnabled=SubresourceIntegrity] attribute DOMString integrity;
 };