2012-03-31 08:42:20 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
2012-10-16 15:51:00 +04:00
|
|
|
* http://dom.spec.whatwg.org/#element and
|
|
|
|
* http://domparsing.spec.whatwg.org/ and
|
|
|
|
* http://dev.w3.org/csswg/cssom-view/ and
|
|
|
|
* http://www.w3.org/TR/selectors-api/
|
2012-03-31 08:42:20 +04:00
|
|
|
*
|
|
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
|
|
* liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
|
|
|
interface Element : Node {
|
2012-10-16 15:51:00 +04:00
|
|
|
/*
|
|
|
|
We haven't moved these from Node to Element like the spec wants.
|
|
|
|
|
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute DOMString? namespaceURI;
|
|
|
|
readonly attribute DOMString? prefix;
|
|
|
|
readonly attribute DOMString localName;
|
2012-10-16 15:51:00 +04:00
|
|
|
*/
|
2012-12-26 02:00:15 +04:00
|
|
|
// Not [Constant] because it depends on which document we're in
|
2013-01-30 02:53:53 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute DOMString tagName;
|
|
|
|
|
2013-01-30 02:53:53 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
attribute DOMString id;
|
2014-05-30 11:36:53 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
attribute DOMString className;
|
2012-12-26 02:00:15 +04:00
|
|
|
[Constant]
|
2014-05-30 11:36:53 +04:00
|
|
|
readonly attribute DOMTokenList classList;
|
2012-03-31 08:42:20 +04:00
|
|
|
|
2013-08-29 08:30:05 +04:00
|
|
|
[SameObject]
|
2014-08-25 13:25:34 +04:00
|
|
|
readonly attribute NamedNodeMap attributes;
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
DOMString? getAttribute(DOMString name);
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
DOMString? getAttributeNS(DOMString? namespace, DOMString localName);
|
2012-10-16 15:51:00 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
void setAttribute(DOMString name, DOMString value);
|
2012-10-16 15:51:00 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
void setAttributeNS(DOMString? namespace, DOMString name, DOMString value);
|
2012-10-16 15:51:00 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
void removeAttribute(DOMString name);
|
2012-10-16 15:51:00 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
void removeAttributeNS(DOMString? namespace, DOMString localName);
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
boolean hasAttribute(DOMString name);
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
boolean hasAttributeNS(DOMString? namespace, DOMString localName);
|
2014-10-01 12:16:00 +04:00
|
|
|
[Pure]
|
|
|
|
boolean hasAttributes();
|
2012-03-31 08:42:20 +04:00
|
|
|
|
2014-09-13 17:08:00 +04:00
|
|
|
[Throws, Pure]
|
|
|
|
Element? closest(DOMString selector);
|
|
|
|
|
2014-08-02 07:37:09 +04:00
|
|
|
[Throws, Pure]
|
|
|
|
boolean matches(DOMString selector);
|
|
|
|
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-10-16 15:51:00 +04:00
|
|
|
HTMLCollection getElementsByTagName(DOMString localName);
|
2013-12-02 18:50:34 +04:00
|
|
|
[Throws, Pure]
|
2012-10-16 15:51:00 +04:00
|
|
|
HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName);
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-10-16 15:51:00 +04:00
|
|
|
HTMLCollection getElementsByClassName(DOMString classNames);
|
2012-03-31 08:42:20 +04:00
|
|
|
|
2013-07-02 18:04:27 +04:00
|
|
|
/**
|
|
|
|
* The ratio of font-size-inflated text font size to computed font
|
|
|
|
* size for this element. This will query the element for its primary frame,
|
|
|
|
* and then use this to get font size inflation information about the frame.
|
|
|
|
* This will be 1.0 if font size inflation is not enabled, and -1.0 if an
|
|
|
|
* error occurred during the retrieval of the font size inflation.
|
|
|
|
*
|
|
|
|
* @note The font size inflation ratio that is returned is actually the
|
|
|
|
* font size inflation data for the element's _primary frame_, not the
|
|
|
|
* element itself, but for most purposes, this should be sufficient.
|
|
|
|
*/
|
|
|
|
[ChromeOnly]
|
|
|
|
readonly attribute float fontSizeInflation;
|
|
|
|
|
2012-10-16 15:51:00 +04:00
|
|
|
// Mozilla specific stuff
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-11-22 15:09:43 +04:00
|
|
|
attribute EventHandler onwheel;
|
|
|
|
|
2012-10-16 15:51:00 +04: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>
|
|
|
|
*/
|
2013-12-02 18:50:34 +04:00
|
|
|
[Throws, Pure]
|
2012-10-16 15:51:00 +04:00
|
|
|
boolean mozMatchesSelector(DOMString selector);
|
|
|
|
|
2014-04-04 21:09:10 +04:00
|
|
|
// Pointer events methods.
|
|
|
|
[Throws, Pref="dom.w3c_pointer_events.enabled"]
|
|
|
|
void setPointerCapture(long pointerId);
|
|
|
|
|
|
|
|
[Throws, Pref="dom.w3c_pointer_events.enabled"]
|
|
|
|
void releasePointerCapture(long pointerId);
|
|
|
|
|
2012-10-16 15:51:00 +04:00
|
|
|
// 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 boolean retargetToElement = false);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If this element has captured the mouse, release the capture. If another
|
|
|
|
* element has captured the mouse, this method has no effect.
|
|
|
|
*/
|
|
|
|
void releaseCapture();
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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();
|
|
|
|
|
|
|
|
// Obsolete methods.
|
2013-04-09 19:29:47 +04:00
|
|
|
Attr? getAttributeNode(DOMString name);
|
2012-10-16 15:51:00 +04:00
|
|
|
[Throws]
|
2013-04-09 19:29:47 +04:00
|
|
|
Attr? setAttributeNode(Attr newAttr);
|
2012-10-16 15:51:00 +04:00
|
|
|
[Throws]
|
2013-04-09 19:29:47 +04:00
|
|
|
Attr? removeAttributeNode(Attr oldAttr);
|
|
|
|
Attr? getAttributeNodeNS(DOMString? namespaceURI, DOMString localName);
|
2012-10-16 15:51:00 +04:00
|
|
|
[Throws]
|
2013-04-09 19:29:47 +04:00
|
|
|
Attr? setAttributeNodeNS(Attr newAttr);
|
2013-09-30 21:32:02 +04:00
|
|
|
|
|
|
|
[ChromeOnly]
|
|
|
|
/**
|
|
|
|
* Scrolls the element by (dx, dy) CSS pixels without doing any
|
|
|
|
* layout flushing.
|
|
|
|
*/
|
|
|
|
boolean scrollByNoFlush(long dx, long dy);
|
2012-10-16 15:51:00 +04:00
|
|
|
};
|
|
|
|
|
Bug 1045754 - Part 1 - Implement updated CSSOM-View smooth-scrolling specification. r=bz
- Added new WebIDL dictionary, ScrollToOptions. This dictionary extends
ScrollOptions by adding "left" and "top", specifying the scroll offset.
This will be later extended with more members to allow scroll offsets to be
specified with logical axes.
- Implemented Window.Scroll, Window.ScrollTo, Window.ScrollBy, Element.Scroll,
Element.ScrollTo, and Element.ScrollBy functions that accept ScrollToOptions
as a single parameter.
- Removed ScrollOptions dictionary parameter from existing Window.Scroll,
Window.ScrollTo, and Window.ScrollBy functions as these have been replaced
with functions accepting a single parameter, ScrollToOptions.
- Added new WebIDL dictionary, ScrollIntoViewOptions. This dictionary
extends ScrollOptions by adding "block", specifying whether the element
start or end will be scrolled into view.
- Replaced Element.ScrollIntoView(bool,ScrollOptions) with
Element.ScrollIntoView(ScrollIntoViewOptions) to match updated
CSSOM-View scroll-behavior specification.
2014-10-01 21:47:56 +04:00
|
|
|
// http://dev.w3.org/csswg/cssom-view/
|
|
|
|
enum ScrollLogicalPosition { "start", "end" };
|
|
|
|
dictionary ScrollIntoViewOptions : ScrollOptions {
|
|
|
|
ScrollLogicalPosition block = "start";
|
|
|
|
};
|
|
|
|
|
2012-10-16 15:51:00 +04:00
|
|
|
// http://dev.w3.org/csswg/cssom-view/#extensions-to-the-element-interface
|
|
|
|
partial interface Element {
|
2013-09-20 14:21:03 +04:00
|
|
|
DOMRectList getClientRects();
|
|
|
|
DOMRect getBoundingClientRect();
|
2012-10-16 15:51:00 +04:00
|
|
|
|
|
|
|
// scrolling
|
Bug 1045754 - Part 1 - Implement updated CSSOM-View smooth-scrolling specification. r=bz
- Added new WebIDL dictionary, ScrollToOptions. This dictionary extends
ScrollOptions by adding "left" and "top", specifying the scroll offset.
This will be later extended with more members to allow scroll offsets to be
specified with logical axes.
- Implemented Window.Scroll, Window.ScrollTo, Window.ScrollBy, Element.Scroll,
Element.ScrollTo, and Element.ScrollBy functions that accept ScrollToOptions
as a single parameter.
- Removed ScrollOptions dictionary parameter from existing Window.Scroll,
Window.ScrollTo, and Window.ScrollBy functions as these have been replaced
with functions accepting a single parameter, ScrollToOptions.
- Added new WebIDL dictionary, ScrollIntoViewOptions. This dictionary
extends ScrollOptions by adding "block", specifying whether the element
start or end will be scrolled into view.
- Replaced Element.ScrollIntoView(bool,ScrollOptions) with
Element.ScrollIntoView(ScrollIntoViewOptions) to match updated
CSSOM-View scroll-behavior specification.
2014-10-01 21:47:56 +04:00
|
|
|
void scrollIntoView(boolean top);
|
|
|
|
void scrollIntoView(optional ScrollIntoViewOptions options);
|
2013-01-30 02:53:53 +04:00
|
|
|
// None of the CSSOM attributes are [Pure], because they flush
|
2012-10-16 15:51:00 +04:00
|
|
|
attribute long scrollTop; // scroll on setting
|
|
|
|
attribute long scrollLeft; // scroll on setting
|
|
|
|
readonly attribute long scrollWidth;
|
|
|
|
readonly attribute long scrollHeight;
|
Bug 1045754 - Part 1 - Implement updated CSSOM-View smooth-scrolling specification. r=bz
- Added new WebIDL dictionary, ScrollToOptions. This dictionary extends
ScrollOptions by adding "left" and "top", specifying the scroll offset.
This will be later extended with more members to allow scroll offsets to be
specified with logical axes.
- Implemented Window.Scroll, Window.ScrollTo, Window.ScrollBy, Element.Scroll,
Element.ScrollTo, and Element.ScrollBy functions that accept ScrollToOptions
as a single parameter.
- Removed ScrollOptions dictionary parameter from existing Window.Scroll,
Window.ScrollTo, and Window.ScrollBy functions as these have been replaced
with functions accepting a single parameter, ScrollToOptions.
- Added new WebIDL dictionary, ScrollIntoViewOptions. This dictionary
extends ScrollOptions by adding "block", specifying whether the element
start or end will be scrolled into view.
- Replaced Element.ScrollIntoView(bool,ScrollOptions) with
Element.ScrollIntoView(ScrollIntoViewOptions) to match updated
CSSOM-View scroll-behavior specification.
2014-10-01 21:47:56 +04:00
|
|
|
|
|
|
|
void scroll(unrestricted double x, unrestricted double y);
|
|
|
|
void scroll(optional ScrollToOptions options);
|
|
|
|
void scrollTo(unrestricted double x, unrestricted double y);
|
|
|
|
void scrollTo(optional ScrollToOptions options);
|
|
|
|
void scrollBy(unrestricted double x, unrestricted double y);
|
|
|
|
void scrollBy(optional ScrollToOptions options);
|
2012-10-16 15:51:00 +04:00
|
|
|
|
|
|
|
readonly attribute long clientTop;
|
|
|
|
readonly attribute long clientLeft;
|
|
|
|
readonly attribute long clientWidth;
|
|
|
|
readonly attribute long clientHeight;
|
|
|
|
|
|
|
|
// Mozilla specific stuff
|
|
|
|
/* 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 scrollTopMax;
|
|
|
|
readonly attribute long scrollLeftMax;
|
|
|
|
};
|
|
|
|
|
2013-01-04 10:54:26 +04:00
|
|
|
// http://dvcs.w3.org/hg/undomanager/raw-file/tip/undomanager.html
|
|
|
|
partial interface Element {
|
|
|
|
[Pref="dom.undo_manager.enabled"]
|
|
|
|
readonly attribute UndoManager? undoManager;
|
|
|
|
[SetterThrows,Pref="dom.undo_manager.enabled"]
|
|
|
|
attribute boolean undoScope;
|
|
|
|
};
|
|
|
|
|
2012-10-16 15:51:00 +04:00
|
|
|
// http://domparsing.spec.whatwg.org/#extensions-to-the-element-interface
|
|
|
|
partial interface Element {
|
2013-10-08 23:25:01 +04:00
|
|
|
[Pure,SetterThrows,TreatNullAs=EmptyString]
|
2012-10-16 15:51:00 +04:00
|
|
|
attribute DOMString innerHTML;
|
2013-10-08 23:25:01 +04:00
|
|
|
[Pure,SetterThrows,TreatNullAs=EmptyString]
|
2012-10-16 15:51:00 +04:00
|
|
|
attribute DOMString outerHTML;
|
|
|
|
[Throws]
|
2012-12-24 06:38:41 +04:00
|
|
|
void insertAdjacentHTML(DOMString position, DOMString text);
|
2012-10-16 15:51:00 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// http://www.w3.org/TR/selectors-api/#interface-definitions
|
|
|
|
partial interface Element {
|
2013-12-02 18:50:34 +04:00
|
|
|
[Throws, Pure]
|
2012-10-16 15:51:00 +04:00
|
|
|
Element? querySelector(DOMString selectors);
|
2013-12-02 18:50:34 +04:00
|
|
|
[Throws, Pure]
|
2012-10-16 15:51:00 +04:00
|
|
|
NodeList querySelectorAll(DOMString selectors);
|
2012-03-31 08:42:20 +04:00
|
|
|
};
|
2013-04-13 11:08:47 +04:00
|
|
|
|
2014-05-22 10:11:53 +04:00
|
|
|
// http://w3c.github.io/webcomponents/spec/shadow/#extensions-to-element-interface
|
2013-12-02 14:26:11 +04:00
|
|
|
partial interface Element {
|
2014-07-08 06:02:03 +04:00
|
|
|
[Throws,Func="nsDocument::IsWebComponentsEnabled"]
|
2013-12-02 14:26:11 +04:00
|
|
|
ShadowRoot createShadowRoot();
|
2014-07-08 06:02:03 +04:00
|
|
|
[Func="nsDocument::IsWebComponentsEnabled"]
|
2014-05-22 10:11:53 +04:00
|
|
|
NodeList getDestinationInsertionPoints();
|
2014-07-08 06:02:03 +04:00
|
|
|
[Func="nsDocument::IsWebComponentsEnabled"]
|
2013-12-02 14:26:11 +04:00
|
|
|
readonly attribute ShadowRoot? shadowRoot;
|
|
|
|
};
|
|
|
|
|
2013-04-13 11:08:47 +04:00
|
|
|
Element implements ChildNode;
|
2013-11-17 09:10:19 +04:00
|
|
|
Element implements NonDocumentTypeChildNode;
|
2013-07-22 16:15:43 +04:00
|
|
|
Element implements ParentNode;
|
2014-07-16 04:02:31 +04:00
|
|
|
Element implements Animatable;
|
2014-09-24 17:11:29 +04:00
|
|
|
Element implements GeometryUtils;
|