summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/webidls/enabled/HTMLDocument.webidl
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/web-sys/webidls/enabled/HTMLDocument.webidl')
-rw-r--r--vendor/web-sys/webidls/enabled/HTMLDocument.webidl76
1 files changed, 76 insertions, 0 deletions
diff --git a/vendor/web-sys/webidls/enabled/HTMLDocument.webidl b/vendor/web-sys/webidls/enabled/HTMLDocument.webidl
new file mode 100644
index 000000000..8ae008e35
--- /dev/null
+++ b/vendor/web-sys/webidls/enabled/HTMLDocument.webidl
@@ -0,0 +1,76 @@
+/* -*- 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/.
+ */
+
+[OverrideBuiltins]
+interface HTMLDocument : Document {
+ [SetterThrows]
+ attribute DOMString domain;
+ [Throws]
+ attribute DOMString cookie;
+ // DOM tree accessors
+ [Throws]
+ getter object (DOMString name);
+
+ // dynamic markup insertion
+ [CEReactions, Throws]
+ Document open(optional DOMString type, optional DOMString replace = ""); // type is ignored
+ [CEReactions, Throws]
+ WindowProxy? open(DOMString url, DOMString name, DOMString features, optional boolean replace = false);
+ [CEReactions, Throws]
+ undefined close();
+ [CEReactions, Throws]
+ undefined write(DOMString... text);
+ [CEReactions, Throws]
+ undefined writeln(DOMString... text);
+
+ [CEReactions, SetterThrows, SetterNeedsSubjectPrincipal]
+ attribute DOMString designMode;
+ [CEReactions, Throws, NeedsSubjectPrincipal]
+ boolean execCommand(DOMString commandId, optional boolean showUI = false,
+ optional DOMString value = "");
+ [Throws, NeedsSubjectPrincipal]
+ boolean queryCommandEnabled(DOMString commandId);
+ [Throws]
+ boolean queryCommandIndeterm(DOMString commandId);
+ [Throws]
+ boolean queryCommandState(DOMString commandId);
+ [NeedsCallerType]
+ boolean queryCommandSupported(DOMString commandId);
+ [Throws]
+ DOMString queryCommandValue(DOMString commandId);
+
+ [CEReactions, TreatNullAs=EmptyString] attribute DOMString fgColor;
+ [CEReactions, TreatNullAs=EmptyString] attribute DOMString linkColor;
+ [CEReactions, TreatNullAs=EmptyString] attribute DOMString vlinkColor;
+ [CEReactions, TreatNullAs=EmptyString] attribute DOMString alinkColor;
+ [CEReactions, TreatNullAs=EmptyString] attribute DOMString bgColor;
+
+ undefined clear();
+
+ readonly attribute HTMLAllCollection all;
+
+ // @deprecated These are old Netscape 4 methods. Do not use,
+ // the implementation is no-op.
+ // XXXbz do we actually need these anymore?
+ undefined captureEvents();
+ undefined releaseEvents();
+};
+
+partial interface HTMLDocument {
+ /*
+ * Number of nodes that have been blocked by
+ * the Safebrowsing API to prevent tracking.
+ */
+ [ChromeOnly, Pure]
+ readonly attribute long blockedTrackingNodeCount;
+
+ /*
+ * List of nodes that have been blocked by
+ * the Safebrowsing API to prevent tracking.
+ */
+ [ChromeOnly, Pure]
+ readonly attribute NodeList blockedTrackingNodes;
+};