From: Kevin Sawicki Date: Fri, 13 Jan 2017 18:53:56 +0000 (-0800) Subject: Document implemented APIs at the top X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6bcfd0630c96653db319859572726d6e788c7784;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Document implemented APIs at the top --- diff --git a/lib/renderer/window-setup.js b/lib/renderer/window-setup.js index df1109e79..21f0741a2 100644 --- a/lib/renderer/window-setup.js +++ b/lib/renderer/window-setup.js @@ -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