2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsIDOMNode.idl"
|
|
|
|
|
2013-03-17 01:51:34 -07:00
|
|
|
interface nsIDOMMozNamedAttrMap;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* The nsIDOMElement interface represents an element in an HTML or
|
|
|
|
* XML document.
|
|
|
|
*
|
|
|
|
* For more information on this interface please see
|
2011-12-18 02:06:23 -08:00
|
|
|
* http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#interface-element
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
|
|
|
|
2013-11-16 04:31:37 -08:00
|
|
|
[scriptable, uuid(989422ef-120d-4d29-8a56-6aa2505a8b02)]
|
2007-03-22 10:30:00 -07:00
|
|
|
interface nsIDOMElement : nsIDOMNode
|
|
|
|
{
|
|
|
|
readonly attribute DOMString tagName;
|
2011-12-18 02:06:23 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a DOMTokenList object reflecting the class attribute.
|
|
|
|
*/
|
2013-01-15 00:35:59 -08:00
|
|
|
readonly attribute nsISupports classList;
|
2011-12-18 02:06:23 -08:00
|
|
|
|
2013-03-17 01:51:34 -07:00
|
|
|
readonly attribute nsIDOMMozNamedAttrMap attributes;
|
2007-03-22 10:30:00 -07:00
|
|
|
DOMString getAttribute(in DOMString name);
|
|
|
|
DOMString getAttributeNS(in DOMString namespaceURI,
|
|
|
|
in DOMString localName);
|
2011-12-18 02:06:23 -08:00
|
|
|
void setAttribute(in DOMString name,
|
|
|
|
in DOMString value);
|
2007-03-22 10:30:00 -07:00
|
|
|
void setAttributeNS(in DOMString namespaceURI,
|
|
|
|
in DOMString qualifiedName,
|
2011-12-18 02:06:23 -08:00
|
|
|
in DOMString value);
|
|
|
|
void removeAttribute(in DOMString name);
|
2007-03-22 10:30:00 -07:00
|
|
|
void removeAttributeNS(in DOMString namespaceURI,
|
2011-12-18 02:06:23 -08:00
|
|
|
in DOMString localName);
|
|
|
|
boolean hasAttribute(in DOMString name);
|
|
|
|
boolean hasAttributeNS(in DOMString namespaceURI,
|
|
|
|
in DOMString localName);
|
|
|
|
|
|
|
|
// Obsolete methods.
|
|
|
|
nsIDOMAttr getAttributeNode(in DOMString name);
|
|
|
|
nsIDOMAttr setAttributeNode(in nsIDOMAttr newAttr);
|
|
|
|
nsIDOMAttr removeAttributeNode(in nsIDOMAttr oldAttr);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIDOMAttr getAttributeNodeNS(in DOMString namespaceURI,
|
|
|
|
in DOMString localName);
|
|
|
|
nsIDOMAttr setAttributeNodeNS(in nsIDOMAttr newAttr)
|
|
|
|
raises(DOMException);
|
2011-12-18 02:06:23 -08:00
|
|
|
|
2012-09-26 07:17:47 -07:00
|
|
|
nsIDOMHTMLCollection getElementsByTagName(in DOMString name);
|
|
|
|
nsIDOMHTMLCollection getElementsByTagNameNS(in DOMString namespaceURI,
|
|
|
|
in DOMString localName);
|
2011-12-18 02:06:23 -08:00
|
|
|
/**
|
|
|
|
* Retrieve elements matching all classes listed in a
|
|
|
|
* space-separated string.
|
|
|
|
*/
|
2012-09-26 07:17:47 -07:00
|
|
|
nsIDOMHTMLCollection getElementsByClassName(in DOMString classes);
|
2011-12-18 02:06:23 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a live nsIDOMNodeList of the current child elements.
|
|
|
|
*/
|
|
|
|
[binaryname(ChildElements)]
|
|
|
|
readonly attribute nsIDOMNodeList children;
|
|
|
|
/**
|
|
|
|
* Similar as the attributes on nsIDOMNode, but navigates just elements
|
|
|
|
* rather than all nodes.
|
|
|
|
*/
|
|
|
|
readonly attribute nsIDOMElement firstElementChild;
|
|
|
|
readonly attribute nsIDOMElement lastElementChild;
|
|
|
|
readonly attribute nsIDOMElement previousElementSibling;
|
|
|
|
readonly attribute nsIDOMElement nextElementSibling;
|
|
|
|
/**
|
|
|
|
* Returns the number of child nodes that are nsIDOMElements.
|
|
|
|
*/
|
|
|
|
readonly attribute unsigned long childElementCount;
|
2011-10-10 04:42:17 -07:00
|
|
|
|
2013-04-13 00:08:47 -07:00
|
|
|
[binaryname(MozRemove)]
|
|
|
|
void remove();
|
|
|
|
|
2011-12-18 02:06:23 -08:00
|
|
|
// CSSOM View
|
|
|
|
/**
|
|
|
|
* Retrieve a list of rectangles, one for each CSS border-box associated with
|
|
|
|
* the element. The coordinates are in CSS pixels, and relative to
|
|
|
|
* the top-left of the document's viewport, unless the document
|
|
|
|
* has an SVG foreignobject ancestor, in which case the coordinates are
|
|
|
|
* relative to the top-left of the content box of the nearest SVG foreignobject
|
|
|
|
* ancestor. The coordinates are calculated as if every scrollable element
|
|
|
|
* is scrolled to its default position.
|
|
|
|
*
|
|
|
|
* Note: the boxes of overflowing children do not affect these rectangles.
|
|
|
|
* Note: some elements have empty CSS boxes. Those return empty rectangles,
|
|
|
|
* but the coordinates may still be meaningful.
|
|
|
|
* Note: some elements have no CSS boxes (including display:none elements,
|
|
|
|
* HTML AREA elements, and SVG elements that do not render). Those return
|
|
|
|
* an empty list.
|
|
|
|
*/
|
|
|
|
nsIDOMClientRectList getClientRects();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the union of all rectangles in the getClientRects() list. Empty
|
|
|
|
* rectangles are ignored, except that if all rectangles are empty,
|
|
|
|
* we return an empty rectangle positioned at the top-left of the first
|
|
|
|
* rectangle in getClientRects().
|
|
|
|
*/
|
|
|
|
nsIDOMClientRect getBoundingClientRect();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The vertical scroll position of the element, or 0 if the element is not
|
|
|
|
* scrollable. This property may be assigned a value to change the
|
|
|
|
* vertical scroll position.
|
|
|
|
*/
|
|
|
|
attribute long scrollTop;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The horizontal scroll position of the element, or 0 if the element is not
|
|
|
|
* scrollable. This property may be assigned a value to change the
|
|
|
|
* horizontal scroll position.
|
|
|
|
*/
|
|
|
|
attribute long scrollLeft;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The width of the scrollable area of the element. If the element is not
|
|
|
|
* scrollable, scrollWidth is equivalent to the offsetWidth.
|
|
|
|
*/
|
|
|
|
readonly attribute long scrollWidth;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The height of the scrollable area of the element. If the element is not
|
|
|
|
* scrollable, scrollHeight is equivalent to the offsetHeight.
|
|
|
|
*/
|
|
|
|
readonly attribute long scrollHeight;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The height in CSS pixels of the element's top border.
|
|
|
|
*/
|
|
|
|
readonly attribute long clientTop;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The width in CSS pixels of the element's left border and scrollbar
|
|
|
|
* if it is present on the left side.
|
|
|
|
*/
|
|
|
|
readonly attribute long clientLeft;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The height in CSS pixels of the element's padding box. If the element is
|
|
|
|
* scrollable, the scroll bars are included inside this width.
|
|
|
|
*/
|
|
|
|
readonly attribute long clientWidth;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The width in CSS pixels of the element's padding box. If the element is
|
|
|
|
* scrollable, the scroll bars are included inside this height.
|
|
|
|
*/
|
|
|
|
readonly attribute long clientHeight;
|
|
|
|
|
2012-06-26 22:30:14 -07:00
|
|
|
/* The maximum offset that the element can be scrolled to
|
|
|
|
(i.e., the value that scrollLeft/scrollTop would be clamped to if they were
|
|
|
|
set to arbitrarily large values. */
|
|
|
|
readonly attribute long scrollLeftMax;
|
|
|
|
readonly attribute long scrollTopMax;
|
|
|
|
|
2011-12-18 02:06:23 -08:00
|
|
|
|
|
|
|
// Selectors API
|
|
|
|
/**
|
|
|
|
* Returns whether this element would be selected by the given selector
|
|
|
|
* string.
|
|
|
|
*
|
|
|
|
* See <http://dev.w3.org/2006/webapi/selectors-api2/#matchesselector>
|
|
|
|
*/
|
|
|
|
boolean mozMatchesSelector([Null(Stringify)] in DOMString selector);
|
|
|
|
|
|
|
|
|
|
|
|
// Proprietary extensions
|
|
|
|
/**
|
|
|
|
* Set this during a mousedown event to grab and retarget all mouse events
|
|
|
|
* to this element until the mouse button is released or releaseCapture is
|
|
|
|
* called. If retargetToElement is true, then all events are targetted at
|
|
|
|
* this element. If false, events can also fire at descendants of this
|
|
|
|
* element.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void setCapture([optional] in boolean retargetToElement);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If this element has captured the mouse, release the capture. If another
|
|
|
|
* element has captured the mouse, this method has no effect.
|
|
|
|
*/
|
|
|
|
void releaseCapture();
|
2012-03-23 21:37:04 -07:00
|
|
|
|
|
|
|
// Mozilla extensions
|
|
|
|
/**
|
|
|
|
* Requests that this element be made the full-screen element, as per the DOM
|
|
|
|
* full-screen api.
|
|
|
|
*
|
|
|
|
* @see <https://wiki.mozilla.org/index.php?title=Gecko:FullScreenAPI>
|
|
|
|
*/
|
|
|
|
void mozRequestFullScreen();
|
2012-04-11 14:55:21 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Requests that this element be made the pointer-locked element, as per the DOM
|
|
|
|
* pointer lock api.
|
|
|
|
*
|
|
|
|
* @see <http://dvcs.w3.org/hg/pointerlock/raw-file/default/index.html>
|
|
|
|
*/
|
|
|
|
void mozRequestPointerLock();
|
2013-07-08 05:09:18 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return nodes that match a given CSS selector.
|
|
|
|
*
|
|
|
|
* @see <http://dev.w3.org/2006/webapi/selectors-api/>
|
|
|
|
*/
|
|
|
|
nsIDOMElement querySelector([Null(Stringify)] in DOMString selectors);
|
|
|
|
nsIDOMNodeList querySelectorAll([Null(Stringify)] in DOMString selectors);
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|