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/.
|
|
|
|
*
|
2018-01-26 08:53:34 +03:00
|
|
|
* https://dom.spec.whatwg.org/#interface-document
|
|
|
|
* https://html.spec.whatwg.org/multipage/dom.html#the-document-object
|
2018-03-13 04:44:56 +03:00
|
|
|
* https://html.spec.whatwg.org/multipage/obsolete.html#other-elements%2C-attributes-and-apis
|
|
|
|
* https://fullscreen.spec.whatwg.org/#api
|
|
|
|
* https://w3c.github.io/pointerlock/#extensions-to-the-document-interface
|
|
|
|
* https://w3c.github.io/pointerlock/#extensions-to-the-documentorshadowroot-mixin
|
|
|
|
* https://w3c.github.io/page-visibility/#extensions-to-the-document-interface
|
|
|
|
* https://drafts.csswg.org/cssom/#extensions-to-the-document-interface
|
|
|
|
* https://drafts.csswg.org/cssom-view/#extensions-to-the-document-interface
|
2012-03-31 08:42:20 +04:00
|
|
|
*/
|
|
|
|
|
2012-12-22 12:27:27 +04:00
|
|
|
interface WindowProxy;
|
2012-12-24 02:33:33 +04:00
|
|
|
interface nsISupports;
|
2013-07-16 01:28:33 +04:00
|
|
|
interface URI;
|
2013-12-06 01:28:21 +04:00
|
|
|
interface nsIDocShell;
|
2015-04-16 00:19:21 +03:00
|
|
|
interface nsILoadGroup;
|
2012-12-22 12:27:27 +04:00
|
|
|
|
2017-12-15 01:28:22 +03:00
|
|
|
enum VisibilityState { "hidden", "visible" };
|
2012-12-26 02:00:15 +04:00
|
|
|
|
2016-06-06 13:43:39 +03:00
|
|
|
/* https://dom.spec.whatwg.org/#dictdef-elementcreationoptions */
|
|
|
|
dictionary ElementCreationOptions {
|
|
|
|
DOMString is;
|
2017-03-17 10:30:34 +03:00
|
|
|
|
|
|
|
[ChromeOnly]
|
|
|
|
DOMString pseudo;
|
2016-06-06 13:43:39 +03:00
|
|
|
};
|
|
|
|
|
2018-01-26 08:53:34 +03:00
|
|
|
/* https://dom.spec.whatwg.org/#interface-document */
|
2012-12-22 12:27:27 +04:00
|
|
|
[Constructor]
|
2012-03-31 08:42:20 +04:00
|
|
|
interface Document : Node {
|
2013-01-30 02:53:53 +04:00
|
|
|
[Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute DOMImplementation implementation;
|
2016-11-17 21:49:27 +03:00
|
|
|
[Pure, Throws, BinaryName="documentURIFromJS", NeedsCallerType]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute DOMString URL;
|
2016-11-17 21:49:27 +03:00
|
|
|
[Pure, Throws, BinaryName="documentURIFromJS", NeedsCallerType]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute DOMString documentURI;
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute DOMString compatMode;
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute DOMString characterSet;
|
2015-09-23 03:32:29 +03:00
|
|
|
[Pure,BinaryName="characterSet"]
|
|
|
|
readonly attribute DOMString charset; // legacy alias of .characterSet
|
|
|
|
[Pure,BinaryName="characterSet"]
|
|
|
|
readonly attribute DOMString inputEncoding; // legacy alias of .characterSet
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute DOMString contentType;
|
|
|
|
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute DocumentType? doctype;
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute Element? documentElement;
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-12-22 12:27:27 +04:00
|
|
|
HTMLCollection getElementsByTagName(DOMString localName);
|
2014-02-03 20:03:54 +04:00
|
|
|
[Pure, Throws]
|
2012-12-22 12:27:27 +04:00
|
|
|
HTMLCollection getElementsByTagNameNS(DOMString? namespace, DOMString localName);
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-12-22 12:27:27 +04:00
|
|
|
HTMLCollection getElementsByClassName(DOMString classNames);
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
Element? getElementById(DOMString elementId);
|
|
|
|
|
2017-11-03 19:32:05 +03:00
|
|
|
[CEReactions, NewObject, Throws]
|
2016-09-01 13:06:33 +03:00
|
|
|
Element createElement(DOMString localName, optional (ElementCreationOptions or DOMString) options);
|
2017-11-03 19:32:05 +03:00
|
|
|
[CEReactions, NewObject, Throws]
|
2017-02-14 19:07:00 +03:00
|
|
|
Element createElementNS(DOMString? namespace, DOMString qualifiedName, optional (ElementCreationOptions or DOMString) options);
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject]
|
2012-03-31 08:42:20 +04:00
|
|
|
DocumentFragment createDocumentFragment();
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject]
|
2012-03-31 08:42:20 +04:00
|
|
|
Text createTextNode(DOMString data);
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject]
|
2012-03-31 08:42:20 +04:00
|
|
|
Comment createComment(DOMString data);
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
ProcessingInstruction createProcessingInstruction(DOMString target, DOMString data);
|
|
|
|
|
2017-06-29 17:25:00 +03:00
|
|
|
[CEReactions, Throws]
|
2013-12-20 23:28:17 +04:00
|
|
|
Node importNode(Node node, optional boolean deep = false);
|
2017-06-29 17:25:00 +03:00
|
|
|
[CEReactions, Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
Node adoptNode(Node node);
|
|
|
|
|
2017-04-20 15:45:37 +03:00
|
|
|
[NewObject, Throws, NeedsCallerType]
|
2012-12-22 12:27:27 +04:00
|
|
|
Event createEvent(DOMString interface);
|
2012-03-31 08:42:20 +04:00
|
|
|
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
Range createRange();
|
|
|
|
|
2012-12-22 12:27:27 +04:00
|
|
|
// NodeFilter.SHOW_ALL = 0xFFFFFFFF
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Throws]
|
2012-12-22 12:27:27 +04:00
|
|
|
NodeIterator createNodeIterator(Node root, optional unsigned long whatToShow = 0xFFFFFFFF, optional NodeFilter? filter = null);
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Throws]
|
2012-12-22 12:27:27 +04:00
|
|
|
TreeWalker createTreeWalker(Node root, optional unsigned long whatToShow = 0xFFFFFFFF, optional NodeFilter? filter = null);
|
2012-03-31 08:42:20 +04:00
|
|
|
|
|
|
|
// NEW
|
2012-12-22 12:27:27 +04:00
|
|
|
// No support for prepend/append yet
|
|
|
|
// void prepend((Node or DOMString)... nodes);
|
|
|
|
// void append((Node or DOMString)... nodes);
|
|
|
|
|
|
|
|
// These are not in the spec, but leave them for now for backwards compat.
|
|
|
|
// So sort of like Gecko extensions
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Throws]
|
2012-12-22 12:27:27 +04:00
|
|
|
CDATASection createCDATASection(DOMString data);
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Throws]
|
2012-12-22 12:27:27 +04:00
|
|
|
Attr createAttribute(DOMString name);
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Throws]
|
2012-12-22 12:27:27 +04:00
|
|
|
Attr createAttributeNS(DOMString? namespace, DOMString name);
|
|
|
|
};
|
|
|
|
|
2018-01-26 08:53:34 +03:00
|
|
|
// https://html.spec.whatwg.org/multipage/dom.html#the-document-object
|
2012-12-22 12:27:27 +04:00
|
|
|
partial interface Document {
|
|
|
|
[PutForwards=href, Unforgeable] readonly attribute Location? location;
|
|
|
|
//(HTML only) attribute DOMString domain;
|
|
|
|
readonly attribute DOMString referrer;
|
|
|
|
//(HTML only) attribute DOMString cookie;
|
|
|
|
readonly attribute DOMString lastModified;
|
|
|
|
readonly attribute DOMString readyState;
|
|
|
|
|
|
|
|
// DOM tree accessors
|
|
|
|
//(Not proxy yet)getter object (DOMString name);
|
2017-06-29 17:26:00 +03:00
|
|
|
[CEReactions, SetterThrows, Pure]
|
2012-12-22 12:27:27 +04:00
|
|
|
attribute DOMString title;
|
2017-06-29 17:26:00 +03:00
|
|
|
[CEReactions, Pure]
|
2012-12-22 12:27:27 +04:00
|
|
|
attribute DOMString dir;
|
2018-01-26 08:53:34 +03:00
|
|
|
[CEReactions, Pure, SetterThrows]
|
|
|
|
attribute HTMLElement? body;
|
2018-03-13 04:44:56 +03:00
|
|
|
[Pure]
|
|
|
|
readonly attribute HTMLHeadElement? head;
|
2018-03-13 04:44:56 +03:00
|
|
|
[SameObject] readonly attribute HTMLCollection images;
|
|
|
|
[SameObject] readonly attribute HTMLCollection embeds;
|
|
|
|
[SameObject] readonly attribute HTMLCollection plugins;
|
2018-03-13 04:44:56 +03:00
|
|
|
[SameObject] readonly attribute HTMLCollection links;
|
2018-03-13 04:44:56 +03:00
|
|
|
[SameObject] readonly attribute HTMLCollection forms;
|
|
|
|
[SameObject] readonly attribute HTMLCollection scripts;
|
2017-11-08 19:13:33 +03:00
|
|
|
[Pure]
|
|
|
|
NodeList getElementsByName(DOMString elementName);
|
2012-12-22 12:27:27 +04:00
|
|
|
//(Not implemented)readonly attribute DOMElementMap cssElementMap;
|
|
|
|
|
|
|
|
// dynamic markup insertion
|
|
|
|
//(HTML only)Document open(optional DOMString type, optional DOMString replace);
|
|
|
|
//(HTML only)WindowProxy open(DOMString url, DOMString name, DOMString features, optional boolean replace);
|
|
|
|
//(HTML only)void close();
|
|
|
|
//(HTML only)void write(DOMString... text);
|
|
|
|
//(HTML only)void writeln(DOMString... text);
|
|
|
|
|
|
|
|
// user interaction
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-12-22 12:27:27 +04:00
|
|
|
readonly attribute WindowProxy? defaultView;
|
|
|
|
[Throws]
|
|
|
|
boolean hasFocus();
|
|
|
|
//(HTML only) attribute DOMString designMode;
|
|
|
|
//(HTML only)boolean execCommand(DOMString commandId);
|
|
|
|
//(HTML only)boolean execCommand(DOMString commandId, boolean showUI);
|
|
|
|
//(HTML only)boolean execCommand(DOMString commandId, boolean showUI, DOMString value);
|
|
|
|
//(HTML only)boolean queryCommandEnabled(DOMString commandId);
|
|
|
|
//(HTML only)boolean queryCommandIndeterm(DOMString commandId);
|
|
|
|
//(HTML only)boolean queryCommandState(DOMString commandId);
|
|
|
|
//(HTML only)boolean queryCommandSupported(DOMString commandId);
|
|
|
|
//(HTML only)DOMString queryCommandValue(DOMString commandId);
|
|
|
|
//(Not implemented)readonly attribute HTMLCollection commands;
|
|
|
|
|
|
|
|
// special event handler IDL attributes that only apply to Document objects
|
2013-09-17 15:01:28 +04:00
|
|
|
[LenientThis] attribute EventHandler onreadystatechange;
|
2012-12-22 12:27:27 +04:00
|
|
|
|
|
|
|
// Gecko extensions?
|
2013-09-17 15:01:28 +04:00
|
|
|
attribute EventHandler onbeforescriptexecute;
|
|
|
|
attribute EventHandler onafterscriptexecute;
|
2015-08-12 20:26:01 +03:00
|
|
|
|
2015-12-08 23:42:21 +03:00
|
|
|
[Pref="dom.select_events.enabled"]
|
|
|
|
attribute EventHandler onselectionchange;
|
|
|
|
|
2012-12-22 12:27:27 +04:00
|
|
|
/**
|
|
|
|
* True if this document is synthetic : stand alone image, video, audio file,
|
|
|
|
* etc.
|
|
|
|
*/
|
2013-10-28 21:27:53 +04:00
|
|
|
[Func="IsChromeOrXBL"] readonly attribute boolean mozSyntheticDocument;
|
2012-12-22 12:27:27 +04:00
|
|
|
/**
|
|
|
|
* Returns the script element whose script is currently being processed.
|
|
|
|
*
|
|
|
|
* @see <https://developer.mozilla.org/en/DOM/document.currentScript>
|
|
|
|
*/
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-12-22 12:27:27 +04:00
|
|
|
readonly attribute Element? currentScript;
|
|
|
|
/**
|
|
|
|
* Release the current mouse capture if it is on an element within this
|
|
|
|
* document.
|
|
|
|
*
|
|
|
|
* @see <https://developer.mozilla.org/en/DOM/document.releaseCapture>
|
|
|
|
*/
|
|
|
|
void releaseCapture();
|
|
|
|
/**
|
|
|
|
* Use the given DOM element as the source image of target |-moz-element()|.
|
|
|
|
*
|
|
|
|
* This function introduces a new special ID (called "image element ID"),
|
|
|
|
* which is only used by |-moz-element()|, and associates it with the given
|
|
|
|
* DOM element. Image elements ID's have the higher precedence than general
|
|
|
|
* HTML id's, so if |document.mozSetImageElement(<id>, <element>)| is called,
|
|
|
|
* |-moz-element(#<id>)| uses |<element>| as the source image even if there
|
|
|
|
* is another element with id attribute = |<id>|. To unregister an image
|
|
|
|
* element ID |<id>|, call |document.mozSetImageElement(<id>, null)|.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* <script>
|
|
|
|
* canvas = document.createElement("canvas");
|
|
|
|
* canvas.setAttribute("width", 100);
|
|
|
|
* canvas.setAttribute("height", 100);
|
|
|
|
* // draw to canvas
|
|
|
|
* document.mozSetImageElement("canvasbg", canvas);
|
|
|
|
* </script>
|
|
|
|
* <div style="background-image: -moz-element(#canvasbg);"></div>
|
|
|
|
*
|
|
|
|
* @param aImageElementId an image element ID to associate with
|
|
|
|
* |aImageElement|
|
|
|
|
* @param aImageElement a DOM element to be used as the source image of
|
|
|
|
* |-moz-element(#aImageElementId)|. If this is null, the function will
|
|
|
|
* unregister the image element ID |aImageElementId|.
|
|
|
|
*
|
|
|
|
* @see <https://developer.mozilla.org/en/DOM/document.mozSetImageElement>
|
|
|
|
*/
|
|
|
|
void mozSetImageElement(DOMString aImageElementId,
|
|
|
|
Element? aImageElement);
|
|
|
|
|
2013-02-22 18:56:29 +04:00
|
|
|
[ChromeOnly]
|
|
|
|
readonly attribute URI? documentURIObject;
|
|
|
|
|
2015-01-05 20:42:31 +03:00
|
|
|
/**
|
|
|
|
* Current referrer policy - one of the REFERRER_POLICY_* constants
|
|
|
|
* from nsIHttpChannel.
|
|
|
|
*/
|
|
|
|
[ChromeOnly]
|
|
|
|
readonly attribute unsigned long referrerPolicy;
|
|
|
|
|
2012-12-22 12:27:27 +04:00
|
|
|
};
|
|
|
|
|
2018-03-13 04:44:56 +03:00
|
|
|
// https://html.spec.whatwg.org/multipage/obsolete.html#other-elements%2C-attributes-and-apis
|
|
|
|
partial interface Document {
|
|
|
|
//(HTML only)[CEReactions] attribute [TreatNullAs=EmptyString] DOMString fgColor;
|
|
|
|
//(HTML only)[CEReactions] attribute [TreatNullAs=EmptyString] DOMString linkColor;
|
|
|
|
//(HTML only)[CEReactions] attribute [TreatNullAs=EmptyString] DOMString vlinkColor;
|
|
|
|
//(HTML only)[CEReactions] attribute [TreatNullAs=EmptyString] DOMString alinkColor;
|
|
|
|
//(HTML only)[CEReactions] attribute [TreatNullAs=EmptyString] DOMString bgColor;
|
|
|
|
|
2018-03-13 04:44:57 +03:00
|
|
|
[SameObject] readonly attribute HTMLCollection anchors;
|
2018-03-13 04:44:56 +03:00
|
|
|
[SameObject] readonly attribute HTMLCollection applets;
|
|
|
|
|
|
|
|
//(HTML only)void clear();
|
|
|
|
//(HTML only)void captureEvents();
|
|
|
|
//(HTML only)void releaseEvents();
|
|
|
|
|
|
|
|
//(HTML only)[SameObject] readonly attribute HTMLAllCollection all;
|
|
|
|
};
|
|
|
|
|
2016-02-17 03:47:11 +03:00
|
|
|
// https://fullscreen.spec.whatwg.org/#api
|
2012-12-22 12:27:27 +04:00
|
|
|
partial interface Document {
|
|
|
|
// Note: Per spec the 'S' in these two is lowercase, but the "Moz"
|
2016-05-19 23:14:34 +03:00
|
|
|
// versions have it uppercase.
|
2018-03-05 04:39:41 +03:00
|
|
|
[LenientSetter, Unscopable, Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
2016-05-12 03:28:56 +03:00
|
|
|
readonly attribute boolean fullscreen;
|
2016-06-30 14:12:14 +03:00
|
|
|
[BinaryName="fullscreen"]
|
2016-05-12 03:28:56 +03:00
|
|
|
readonly attribute boolean mozFullScreen;
|
2016-11-17 21:49:27 +03:00
|
|
|
[LenientSetter, Func="nsDocument::IsUnprefixedFullscreenEnabled", NeedsCallerType]
|
2016-02-17 03:47:11 +03:00
|
|
|
readonly attribute boolean fullscreenEnabled;
|
2016-11-17 21:49:27 +03:00
|
|
|
[BinaryName="fullscreenEnabled", NeedsCallerType]
|
2012-12-22 12:27:27 +04:00
|
|
|
readonly attribute boolean mozFullScreenEnabled;
|
|
|
|
|
2016-05-02 07:26:04 +03:00
|
|
|
[Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
2016-02-17 03:47:11 +03:00
|
|
|
void exitFullscreen();
|
2016-06-30 14:12:14 +03:00
|
|
|
[BinaryName="exitFullscreen"]
|
2016-02-17 03:47:11 +03:00
|
|
|
void mozCancelFullScreen();
|
2016-05-24 06:21:22 +03:00
|
|
|
|
|
|
|
// Events handlers
|
|
|
|
[Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
|
|
|
attribute EventHandler onfullscreenchange;
|
|
|
|
[Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
|
|
|
attribute EventHandler onfullscreenerror;
|
2012-12-22 12:27:27 +04:00
|
|
|
};
|
|
|
|
|
2016-07-28 10:15:21 +03:00
|
|
|
// https://w3c.github.io/pointerlock/#extensions-to-the-document-interface
|
|
|
|
// https://w3c.github.io/pointerlock/#extensions-to-the-documentorshadowroot-mixin
|
2012-12-22 12:27:27 +04:00
|
|
|
partial interface Document {
|
2016-07-28 10:15:21 +03:00
|
|
|
void exitPointerLock();
|
|
|
|
|
|
|
|
// Event handlers
|
|
|
|
attribute EventHandler onpointerlockchange;
|
|
|
|
attribute EventHandler onpointerlockerror;
|
2012-12-22 12:27:27 +04:00
|
|
|
};
|
|
|
|
|
2017-07-26 23:22:42 +03:00
|
|
|
// https://w3c.github.io/page-visibility/#extensions-to-the-document-interface
|
2012-12-22 12:27:27 +04:00
|
|
|
partial interface Document {
|
|
|
|
readonly attribute boolean hidden;
|
2012-12-26 02:00:15 +04:00
|
|
|
readonly attribute VisibilityState visibilityState;
|
2017-07-26 23:22:42 +03:00
|
|
|
attribute EventHandler onvisibilitychange;
|
2012-12-22 12:27:27 +04:00
|
|
|
};
|
|
|
|
|
2018-03-13 04:44:56 +03:00
|
|
|
// https://drafts.csswg.org/cssom/#extensions-to-the-document-interface
|
2012-12-22 12:27:27 +04:00
|
|
|
partial interface Document {
|
|
|
|
attribute DOMString? selectedStyleSheetSet;
|
|
|
|
readonly attribute DOMString? lastStyleSheetSet;
|
|
|
|
readonly attribute DOMString? preferredStyleSheetSet;
|
|
|
|
[Constant]
|
|
|
|
readonly attribute DOMStringList styleSheetSets;
|
|
|
|
void enableStyleSheetsForSet (DOMString? name);
|
|
|
|
};
|
|
|
|
|
2018-03-13 04:44:56 +03:00
|
|
|
// https://drafts.csswg.org/cssom-view/#extensions-to-the-document-interface
|
2012-12-22 12:27:27 +04:00
|
|
|
partial interface Document {
|
2013-01-07 21:56:48 +04:00
|
|
|
CaretPosition? caretPositionFromPoint (float x, float y);
|
2016-01-27 03:44:05 +03:00
|
|
|
|
|
|
|
readonly attribute Element? scrollingElement;
|
2013-01-04 10:54:26 +04:00
|
|
|
};
|
|
|
|
|
2013-01-10 19:49:07 +04:00
|
|
|
// http://dev.w3.org/2006/webapi/selectors-api2/#interface-definitions
|
2012-12-22 12:27:27 +04:00
|
|
|
partial interface Document {
|
2013-12-02 18:50:34 +04:00
|
|
|
[Throws, Pure]
|
2012-12-22 12:27:27 +04:00
|
|
|
Element? querySelector(DOMString selectors);
|
2013-12-02 18:50:34 +04:00
|
|
|
[Throws, Pure]
|
2012-12-22 12:27:27 +04:00
|
|
|
NodeList querySelectorAll(DOMString selectors);
|
|
|
|
|
|
|
|
//(Not implemented)Element? find(DOMString selectors, optional (Element or sequence<Node>)? refNodes);
|
|
|
|
//(Not implemented)NodeList findAll(DOMString selectors, optional (Element or sequence<Node>)? refNodes);
|
2013-01-10 19:49:07 +04:00
|
|
|
};
|
2012-12-22 12:27:27 +04:00
|
|
|
|
2017-12-15 23:55:55 +03:00
|
|
|
// https://drafts.csswg.org/web-animations/#extensions-to-the-document-interface
|
2014-05-13 11:22:12 +04:00
|
|
|
partial interface Document {
|
2015-01-08 07:53:24 +03:00
|
|
|
[Func="nsDocument::IsWebAnimationsEnabled"]
|
2015-04-10 04:34:22 +03:00
|
|
|
readonly attribute DocumentTimeline timeline;
|
2016-01-06 22:21:00 +03:00
|
|
|
[Func="nsDocument::IsWebAnimationsEnabled"]
|
|
|
|
sequence<Animation> getAnimations();
|
2014-05-13 11:22:12 +04:00
|
|
|
};
|
|
|
|
|
2016-09-29 04:32:43 +03:00
|
|
|
// https://svgwg.org/svg2-draft/struct.html#InterfaceDocumentExtensions
|
|
|
|
partial interface Document {
|
|
|
|
[BinaryName="SVGRootElement"]
|
|
|
|
readonly attribute SVGSVGElement? rootElement;
|
|
|
|
};
|
|
|
|
|
2013-01-10 19:49:07 +04:00
|
|
|
// Mozilla extensions of various sorts
|
|
|
|
partial interface Document {
|
2018-02-14 22:10:45 +03:00
|
|
|
// XBL support. Wish we could make these [ChromeOnly], but
|
2012-12-22 12:27:27 +04:00
|
|
|
// that would likely break bindings running with the page principal.
|
2013-09-06 20:12:56 +04:00
|
|
|
[Func="IsChromeOrXBL"]
|
2012-12-22 12:27:27 +04:00
|
|
|
NodeList? getAnonymousNodes(Element elt);
|
2013-09-06 20:12:56 +04:00
|
|
|
[Func="IsChromeOrXBL"]
|
2012-12-22 12:27:27 +04:00
|
|
|
Element? getAnonymousElementByAttribute(Element elt, DOMString attrName,
|
|
|
|
DOMString attrValue);
|
2013-09-06 20:12:56 +04:00
|
|
|
[Func="IsChromeOrXBL"]
|
2012-12-22 12:27:27 +04:00
|
|
|
Element? getBindingParent(Node node);
|
2016-10-03 11:34:14 +03:00
|
|
|
[Throws, Func="IsChromeOrXBL", NeedsSubjectPrincipal]
|
2012-12-22 12:27:27 +04:00
|
|
|
void loadBindingDocument(DOMString documentURL);
|
|
|
|
|
|
|
|
// nsIDOMDocumentTouch
|
|
|
|
// XXXbz I can't find the sane spec for this stuff, so just cribbing
|
|
|
|
// from our xpidl for now.
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Func="nsGenericHTMLElement::TouchEventsEnabled"]
|
2012-12-22 12:27:27 +04:00
|
|
|
Touch createTouch(optional Window? view = null,
|
2013-04-19 12:49:20 +04:00
|
|
|
optional EventTarget? target = null,
|
2012-12-22 12:27:27 +04:00
|
|
|
optional long identifier = 0,
|
|
|
|
optional long pageX = 0,
|
|
|
|
optional long pageY = 0,
|
|
|
|
optional long screenX = 0,
|
|
|
|
optional long screenY = 0,
|
|
|
|
optional long clientX = 0,
|
|
|
|
optional long clientY = 0,
|
|
|
|
optional long radiusX = 0,
|
|
|
|
optional long radiusY = 0,
|
|
|
|
optional float rotationAngle = 0,
|
|
|
|
optional float force = 0);
|
2012-12-31 22:37:22 +04:00
|
|
|
// XXXbz a hack to get around the fact that we don't support variadics as
|
|
|
|
// distinguishing arguments yet. Once this hack is removed. we can also
|
|
|
|
// remove the corresponding overload on nsIDocument, since Touch... and
|
|
|
|
// sequence<Touch> look the same in the C++.
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Func="nsGenericHTMLElement::TouchEventsEnabled"]
|
2012-12-31 22:37:22 +04:00
|
|
|
TouchList createTouchList(Touch touch, Touch... touches);
|
|
|
|
// XXXbz and another hack for the fact that we can't usefully have optional
|
|
|
|
// distinguishing arguments but need a working zero-arg form of
|
|
|
|
// createTouchList().
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Func="nsGenericHTMLElement::TouchEventsEnabled"]
|
2012-12-31 22:37:22 +04:00
|
|
|
TouchList createTouchList();
|
2013-09-30 20:32:22 +04:00
|
|
|
[NewObject, Func="nsGenericHTMLElement::TouchEventsEnabled"]
|
2012-12-22 12:27:27 +04:00
|
|
|
TouchList createTouchList(sequence<Touch> touches);
|
2013-05-16 11:13:35 +04:00
|
|
|
|
|
|
|
[ChromeOnly]
|
|
|
|
attribute boolean styleSheetChangeEventsEnabled;
|
2013-07-16 01:28:33 +04:00
|
|
|
|
|
|
|
[ChromeOnly, Throws]
|
|
|
|
void obsoleteSheet(URI sheetURI);
|
|
|
|
[ChromeOnly, Throws]
|
|
|
|
void obsoleteSheet(DOMString sheetURI);
|
2013-12-06 01:28:21 +04:00
|
|
|
|
|
|
|
[ChromeOnly] readonly attribute nsIDocShell? docShell;
|
2014-01-30 21:31:34 +04:00
|
|
|
|
|
|
|
[ChromeOnly] readonly attribute DOMString contentLanguage;
|
2015-04-16 00:19:21 +03:00
|
|
|
|
|
|
|
[ChromeOnly] readonly attribute nsILoadGroup? documentLoadGroup;
|
2016-02-16 02:46:49 +03:00
|
|
|
|
2017-03-17 02:47:35 +03:00
|
|
|
// Blocks the initial document parser until the given promise is settled.
|
|
|
|
[ChromeOnly, Throws]
|
2017-09-21 02:12:27 +03:00
|
|
|
Promise<any> blockParsing(Promise<any> promise,
|
|
|
|
optional BlockParsingOptions options);
|
2017-03-17 02:47:35 +03:00
|
|
|
|
2016-02-16 02:46:49 +03:00
|
|
|
// like documentURI, except that for error pages, it returns the URI we were
|
|
|
|
// trying to load when we hit an error, rather than the error page's own URI.
|
|
|
|
[ChromeOnly] readonly attribute URI? mozDocumentURIIfNotForErrorPages;
|
2018-02-23 00:55:40 +03:00
|
|
|
|
|
|
|
// A promise that is resolved, with this document itself, when we have both
|
|
|
|
// fired DOMContentLoaded and are ready to start layout. This is used for the
|
|
|
|
// "document_idle" webextension script injection point.
|
|
|
|
[ChromeOnly, Throws]
|
|
|
|
readonly attribute Promise<Document> documentReadyForIdle;
|
2012-03-31 08:42:20 +04:00
|
|
|
};
|
|
|
|
|
2017-09-21 02:12:27 +03:00
|
|
|
dictionary BlockParsingOptions {
|
|
|
|
/**
|
|
|
|
* If true, blocks script-created parsers (created via document.open()) in
|
|
|
|
* addition to network-created parsers.
|
|
|
|
*/
|
|
|
|
boolean blockScriptCreated = true;
|
|
|
|
};
|
|
|
|
|
2013-06-29 07:13:22 +04:00
|
|
|
// Extension to give chrome JS the ability to determine when a document was
|
|
|
|
// created to satisfy an iframe with srcdoc attribute.
|
|
|
|
partial interface Document {
|
|
|
|
[ChromeOnly] readonly attribute boolean isSrcdocDocument;
|
|
|
|
};
|
|
|
|
|
2016-06-19 22:34:08 +03:00
|
|
|
|
|
|
|
// Extension to give chrome JS the ability to get the underlying
|
|
|
|
// sandbox flag attribute
|
|
|
|
partial interface Document {
|
|
|
|
[ChromeOnly] readonly attribute DOMString? sandboxFlagsAsString;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-10-28 13:15:25 +03:00
|
|
|
/**
|
|
|
|
* Chrome document anonymous content management.
|
|
|
|
* This is a Chrome-only API that allows inserting fixed positioned anonymous
|
|
|
|
* content on top of the current page displayed in the document.
|
|
|
|
* The supplied content is cloned and inserted into the document's CanvasFrame.
|
|
|
|
* Note that this only works for HTML documents.
|
|
|
|
*/
|
|
|
|
partial interface Document {
|
|
|
|
/**
|
|
|
|
* Deep-clones the provided element and inserts it into the CanvasFrame.
|
|
|
|
* Returns an AnonymousContent instance that can be used to manipulate the
|
|
|
|
* inserted element.
|
|
|
|
*/
|
|
|
|
[ChromeOnly, NewObject, Throws]
|
|
|
|
AnonymousContent insertAnonymousContent(Element aElement);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the element inserted into the CanvasFrame given an AnonymousContent
|
|
|
|
* instance.
|
|
|
|
*/
|
|
|
|
[ChromeOnly, Throws]
|
|
|
|
void removeAnonymousContent(AnonymousContent aContent);
|
|
|
|
};
|
|
|
|
|
2017-08-10 16:53:42 +03:00
|
|
|
// http://w3c.github.io/selection-api/#extensions-to-document-interface
|
|
|
|
partial interface Document {
|
|
|
|
[Throws]
|
|
|
|
Selection? getSelection();
|
|
|
|
};
|
|
|
|
|
2015-09-26 16:54:29 +03:00
|
|
|
// Extension to give chrome JS the ability to determine whether
|
|
|
|
// the user has interacted with the document or not.
|
|
|
|
partial interface Document {
|
|
|
|
[ChromeOnly] readonly attribute boolean userHasInteracted;
|
|
|
|
};
|
|
|
|
|
2018-01-11 12:26:30 +03:00
|
|
|
// Extension to give chrome JS the ability to simulate activate the docuement
|
|
|
|
// by user gesture.
|
|
|
|
partial interface Document {
|
|
|
|
[ChromeOnly]
|
|
|
|
void notifyUserActivation();
|
|
|
|
};
|
|
|
|
|
2016-06-09 13:22:22 +03:00
|
|
|
// Extension to give chrome and XBL JS the ability to determine whether
|
2016-11-05 05:54:59 +03:00
|
|
|
// the document is sandboxed without permission to run scripts
|
|
|
|
// and whether inline scripts are blocked by the document's CSP.
|
2016-06-09 13:22:22 +03:00
|
|
|
partial interface Document {
|
|
|
|
[Func="IsChromeOrXBL"] readonly attribute boolean hasScriptsBlockedBySandbox;
|
2016-11-05 05:54:59 +03:00
|
|
|
[Func="IsChromeOrXBL"] readonly attribute boolean inlineScriptAllowedByCSP;
|
2016-06-09 13:22:22 +03:00
|
|
|
};
|
|
|
|
|
2017-02-14 00:39:40 +03:00
|
|
|
// For more information on Flash classification, see
|
|
|
|
// toolkit/components/url-classifier/flash-block-lists.rst
|
|
|
|
enum FlashClassification {
|
|
|
|
"unclassified", // Denotes a classification that has not yet been computed.
|
|
|
|
// Allows for lazy classification.
|
|
|
|
"unknown", // Site is not on the whitelist or blacklist
|
|
|
|
"allowed", // Site is on the Flash whitelist
|
|
|
|
"denied" // Site is on the Flash blacklist
|
|
|
|
};
|
|
|
|
partial interface Document {
|
|
|
|
[ChromeOnly]
|
|
|
|
readonly attribute FlashClassification documentFlashClassification;
|
|
|
|
};
|
|
|
|
|
2018-03-05 11:20:34 +03:00
|
|
|
// Allows about: pages to query aboutCapabilities
|
|
|
|
partial interface Document {
|
|
|
|
[Throws, Func="nsDocument::CallerIsTrustedAboutPage"] readonly attribute AboutCapabilities aboutCapabilities;
|
|
|
|
};
|
|
|
|
|
2012-12-22 12:27:27 +04:00
|
|
|
Document implements XPathEvaluator;
|
2013-01-29 17:44:00 +04:00
|
|
|
Document implements GlobalEventHandlers;
|
2017-01-13 18:41:20 +03:00
|
|
|
Document implements DocumentAndElementEventHandlers;
|
2013-02-19 20:54:41 +04:00
|
|
|
Document implements TouchEventHandlers;
|
2013-07-22 16:15:43 +04:00
|
|
|
Document implements ParentNode;
|
2013-10-08 19:51:15 +04:00
|
|
|
Document implements OnErrorEventHandlerForNodes;
|
2014-09-24 17:11:29 +04:00
|
|
|
Document implements GeometryUtils;
|
2014-10-02 06:32:05 +04:00
|
|
|
Document implements FontFaceSource;
|
2018-01-18 09:52:15 +03:00
|
|
|
Document implements DocumentOrShadowRoot;
|