Document implemented APIs at the top
authorKevin Sawicki <kevinsawicki@gmail.com>
Fri, 13 Jan 2017 18:53:56 +0000 (10:53 -0800)
committerKevin Sawicki <kevinsawicki@gmail.com>
Mon, 16 Jan 2017 20:38:16 +0000 (12:38 -0800)
lib/renderer/window-setup.js

index df1109e795833fcfdafc943a9b0c03792bbf1887..21f0741a22aa80686aa06e8fe6e6cd4c949b496a 100644 (file)
@@ -2,6 +2,25 @@
 // preload bundle. Instead arguments should be passed in for everything it
 // 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'
 
 const {defineProperty} = Object