mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-29 08:53:03 +03:00
77 lines
2.6 KiB
Plaintext
77 lines
2.6 KiB
Plaintext
|
/* -*- 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]
|
||
|
void close();
|
||
|
[CEReactions, Throws]
|
||
|
void write(DOMString... text);
|
||
|
[CEReactions, Throws]
|
||
|
void 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;
|
||
|
|
||
|
void 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?
|
||
|
void captureEvents();
|
||
|
void 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;
|
||
|
};
|