Rubber-stamped by Brady Eidson.
[webbrowser.git] / WebCore / html / HTMLAreaElement.idl
blob53239c65fdab2037c88fce4b8d598bc83ac0ecdf
1 /*
2 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
21 module html {
23 interface [
24 GenerateConstructor,
25 InterfaceUUID=aac98729-47d3-4623-8c5b-004783af5bd6,
26 ImplementationUUID=f0631a41-5f55-40e5-a879-c09e663c26ba
27 ] HTMLAreaElement : HTMLElement {
28 attribute [ConvertNullToNullString, Reflect=accesskey] DOMString accessKey;
29 attribute [ConvertNullToNullString, Reflect] DOMString alt;
30 attribute [ConvertNullToNullString, Reflect] DOMString coords;
31 attribute [ConvertNullToNullString, ReflectURL] DOMString href;
32 attribute boolean noHref;
33 attribute [ConvertNullToNullString, Reflect] DOMString shape;
34 attribute [ConvertNullToNullString, Reflect] DOMString target;
36 // IE Extensions
37 readonly attribute DOMString hash;
38 readonly attribute DOMString host;
39 readonly attribute DOMString hostname;
40 readonly attribute DOMString pathname;
41 readonly attribute DOMString port;
42 readonly attribute DOMString protocol;
43 readonly attribute DOMString search;
45 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
46 // Objective-C extension:
47 readonly attribute URL absoluteLinkURL;
48 #endif