Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 21:42:36 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-01-21 12:21:24 +03:00
|
|
|
|
|
|
|
#include "nsIDOMHTMLElement.idl"
|
|
|
|
|
2003-01-15 02:05:52 +03:00
|
|
|
/**
|
|
|
|
* The nsIDOMHTMLImageElement interface is the interface to a [X]HTML
|
|
|
|
* img element.
|
|
|
|
*
|
2010-11-17 02:45:29 +03:00
|
|
|
* This interface is trying to follow the DOM Level 2 HTML specification:
|
2003-01-15 02:05:52 +03:00
|
|
|
* http://www.w3.org/TR/DOM-Level-2-HTML/
|
2010-11-17 02:45:29 +03:00
|
|
|
*
|
|
|
|
* with changes from the work-in-progress WHATWG HTML specification:
|
|
|
|
* http://www.whatwg.org/specs/web-apps/current-work/
|
2003-01-15 02:05:52 +03:00
|
|
|
*/
|
|
|
|
|
2012-04-24 23:04:37 +04:00
|
|
|
[scriptable, uuid(76cf0381-19fd-442d-bb18-c794fd8b5c25)]
|
2001-01-21 12:21:24 +03:00
|
|
|
interface nsIDOMHTMLImageElement : nsIDOMHTMLElement
|
|
|
|
{
|
2010-08-05 06:40:17 +04:00
|
|
|
attribute DOMString alt;
|
|
|
|
attribute DOMString src;
|
2011-07-14 22:47:35 +04:00
|
|
|
attribute DOMString crossOrigin;
|
2010-08-05 06:40:17 +04:00
|
|
|
attribute DOMString useMap;
|
|
|
|
attribute boolean isMap;
|
2011-07-12 00:18:26 +04:00
|
|
|
attribute unsigned long width;
|
|
|
|
attribute unsigned long height;
|
|
|
|
readonly attribute unsigned long naturalWidth;
|
|
|
|
readonly attribute unsigned long naturalHeight;
|
2010-08-05 06:40:17 +04:00
|
|
|
readonly attribute boolean complete;
|
|
|
|
|
|
|
|
|
2001-01-22 05:36:07 +03:00
|
|
|
attribute DOMString name;
|
|
|
|
attribute DOMString align;
|
2002-12-17 16:29:39 +03:00
|
|
|
attribute DOMString border;
|
2010-08-05 06:40:17 +04:00
|
|
|
attribute long hspace;
|
2001-01-22 05:36:07 +03:00
|
|
|
attribute DOMString longDesc;
|
|
|
|
attribute long vspace;
|
2010-08-05 06:40:17 +04:00
|
|
|
attribute DOMString lowsrc;
|
2012-04-24 23:04:37 +04:00
|
|
|
|
|
|
|
// These attributes are offsets from the closest view (to mimic
|
|
|
|
// NS4's "offset-from-layer" behavior).
|
|
|
|
readonly attribute long x;
|
|
|
|
readonly attribute long y;
|
2001-01-21 12:21:24 +03:00
|
|
|
};
|