diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-06-27 06:07:23 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-06-27 06:07:23 +0000 |
commit | 1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c (patch) | |
tree | 46dcd36c86e7fbc6e5df36deb463b33e9967a6f7 /Source/WebCore/html/HTMLLinkElement.idl | |
parent | 32761a6cee1d0dee366b885b7b9c777e67885688 (diff) | |
download | WebKitGtk-tarball-master.tar.gz |
webkitgtk-2.16.5HEADwebkitgtk-2.16.5master
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; }; |