API
DOM
https://developer.mozilla.org/en-US/docs/Web/API/HTML_DOM_API
window object
classDiagram class window{ outerWidth : number outerHeight : number innerWidth : number innerHeight : number pageXOffset : number pageYOffset : number close() void alert() void print() void confirm() void scrollBy() void scrollTo() void } class document{ lastModified : string title : string body : HTMLElement cookie : string referrer : string URL : string domain : string location : Location forms : HTMLCollection[] images : HTMLCollection[] querySelector() HTMLElement|null querySelectorAll() NodeList[] getElementByTagName() HTMLCollection[] getElementByClassName() HTMLCollection[] getElementById() HTMLCollection[] createElement() Element getSelection() Selection } window --> document : Contains window --> location : Contains window --> navigator : Contains window --> history : Contains window --> screen : Contains