Document implemented APIs at the top
This commit is contained in:
parent
f4f0174746
commit
6bcfd0630c
1 changed files with 19 additions and 0 deletions
|
@ -2,6 +2,25 @@
|
||||||
// preload bundle. Instead arguments should be passed in for everything it
|
// preload bundle. Instead arguments should be passed in for everything it
|
||||||
// needs.
|
// needs.
|
||||||
|
|
||||||
|
// This file implements the following APIs:
|
||||||
|
// - window.alert()
|
||||||
|
// - window.confirm()
|
||||||
|
// - window.history.back()
|
||||||
|
// - window.history.forward()
|
||||||
|
// - window.history.go()
|
||||||
|
// - window.history.length
|
||||||
|
// - window.open()
|
||||||
|
// - window.opener.blur()
|
||||||
|
// - window.opener.close()
|
||||||
|
// - window.opener.eval()
|
||||||
|
// - window.opener.focus()
|
||||||
|
// - window.opener.location
|
||||||
|
// - window.opener.print()
|
||||||
|
// - window.opener.postMessage()
|
||||||
|
// - window.prompt()
|
||||||
|
// - document.hidden
|
||||||
|
// - document.visibilityState
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
const {defineProperty} = Object
|
const {defineProperty} = Object
|
||||||
|
|
Loading…
Reference in a new issue