diff options
Diffstat (limited to 'Source/WebCore/html/HTMLLinkElement.idl')
-rw-r--r-- | Source/WebCore/html/HTMLLinkElement.idl | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/Source/WebCore/html/HTMLLinkElement.idl b/Source/WebCore/html/HTMLLinkElement.idl index 0a4e34759..92fbf9818 100644 --- a/Source/WebCore/html/HTMLLinkElement.idl +++ b/Source/WebCore/html/HTMLLinkElement.idl @@ -19,26 +19,28 @@ * Boston, MA 02110-1301, USA. */ -interface HTMLLinkElement : HTMLElement { +[ + ExportMacro=WEBCORE_EXPORT, + JSGenerateToNativeObject, +] interface HTMLLinkElement : HTMLElement { [Reflect] attribute boolean disabled; [Reflect] attribute DOMString charset; - [Reflect, URL] attribute DOMString href; + [Reflect, URL] attribute USVString href; [Reflect] attribute DOMString hreflang; [Reflect] attribute DOMString media; [Reflect] attribute DOMString rel; [Reflect] attribute DOMString rev; -#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT - [Custom] attribute DOMSettableTokenList sizes; -#endif + [PutForwards=value] readonly attribute DOMTokenList sizes; [Reflect] attribute DOMString target; [Reflect] attribute DOMString type; + [Reflect] attribute DOMString as; + attribute DOMString? crossOrigin; // DOM Level 2 Style readonly attribute StyleSheet sheet; -#if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C - // Objective-C extension: - readonly attribute URL absoluteLinkURL; -#endif + [PutForwards=value] readonly attribute DOMTokenList relList; + + [Reflect] attribute DOMString nonce; }; |