Parameters
Signature
type t_htmlDocument
= T.t
;
let activeElement: t_htmlDocument => option(Dom.element);
let body: t_htmlDocument => option(Dom.element);
let setBody: t_htmlDocument => Dom.element => unit;
let cookie: t_htmlDocument => string;
let setCookie: t_htmlDocument => string => unit;
let defaultView: t_htmlDocument => option(Dom.window);
let designMode: t_htmlDocument => string;
let designMode: t_htmlDocument => Webapi__Dom__Types.designMode;
let setDesignMode: t_htmlDocument => string => unit;
let setDesignMode: t_htmlDocument => Webapi__Dom__Types.designMode => unit;
let dir: t_htmlDocument => string;
let dir: t_htmlDocument => Webapi__Dom__Types.dir;
let setDir: t_htmlDocument => string => unit;
let setDir: t_htmlDocument => Webapi__Dom__Types.dir => unit;
let domain: t_htmlDocument => option(string);
let setDomain: t_htmlDocument => string => unit;
let embeds: t_htmlDocument => Dom.nodeList;
let forms: t_htmlDocument => Dom.htmlCollection;
let head: t_htmlDocument => Dom.element;
let images: t_htmlDocument => Dom.htmlCollection;
let lastModified: t_htmlDocument => string;
let links: t_htmlDocument => Dom.nodeList;
let location: t_htmlDocument => Dom.location;
let setLocation: t_htmlDocument => string => unit;
let plugins: t_htmlDocument => Dom.htmlCollection;
let readyState: t_htmlDocument => string;
let readyState: t_htmlDocument => Webapi__Dom__Types.readyState;
let referrer: t_htmlDocument => string;
let scripts: t_htmlDocument => Dom.htmlCollection;
let title: t_htmlDocument => string;
let setTitle: t_htmlDocument => string => unit;
let url: t_htmlDocument => string;
let close: t_htmlDocument => unit;
let execCommand: string => bool => Js.null(string) => t_htmlDocument => bool;
let execCommand: string => bool => option(string) => t_htmlDocument => bool;
let getElementsByName: string => t_htmlDocument => Dom.nodeList;
let getSelection: t_htmlDocument => Dom.selection;
let hasFocus: t_htmlDocument => bool;
let open_: t_htmlDocument => unit;
let queryCommandEnabled: string => t_htmlDocument => bool;
let queryCommandIndeterm: string => t_htmlDocument => bool;
let queryCommandSupported: string => t_htmlDocument => bool;
let queryCommandValue: string => t_htmlDocument => string;
let write: string => t_htmlDocument => unit;
let writeln: string => t_htmlDocument => unit;