Environmental Proxy

The essence of the sandbox is that the Proxyopen in new window introduced by ES6 opens objects in a new window, that is, the window and document accessed by the sub-application are disguised objects that has been proxied, but more favorable behaviors have been customized in response to specific needs.

The properties that are customized on the window and document objects are listed below:

window

Object/MethodBehavior
addEventListenerAny registered events are automatically removed from the window when the sandbox exits.
removeEventListener-
dispatchEventUnless declared in escapeWindowEvents, events dispatched by default only work inside the sandbox and are not received outside.
windowReturn window proxy object, readonly.
selfReturn window proxy object, readonly.
topIf the current page has no parent page, then return the window proxy object, otherwise return the real top value, readonly.
parentIf the current page does not have a parent page, then return the window proxy object, otherwise return the real parent value, read only.
gloalThisReturn window proxy object, readonly.
documentReturn document proxy object, readonly.
locationReturn the real location object, we proxy it because of context constraints, location is not available from the proxy.
localStorageIf enabled the sandbox.patches.localStorage, return a proxy object, the key in reading and writing are automatically pretended with the appname.

For example, under foo, localStorage.setItem('nano') actually writes "foo:nano"
setTimeoutIf enabled the sandbox.patches.setTimeout, sandbox will automatically clearTimeout upon exit.
setIntervalIf enabled the sandbox.patches.setInterval, sandbox will automatically clearInterval upon exit.
XMLHttpRequestIf enabled the sandbox.patches.XMLHttpRequest, sandbox will automatically abort upon exit.
MutationObserverIf enabled the sandbox.patches.MutationObserver, sandbox will automatically disconnect upon exit.
requestAnimationFrameIf enabled the sandbox.patches.requestAnimationFrame, sandbox will automatically cancelAnimationFrame upon exit.

This option is only available in browser environments that support this function.
requestIdleCallbackIf enabled the sandbox.patches.requestIdleCallback, sandbox will automatically cancelIdleCallback upon exit.

This option is only available in browser environments that support this function.
fetchIf enabled the sandbox.patches.fetch, and the signal is not passed when the fetch is called, this parameter is automatically added and automatically abort when the sandbox exits.

This option is only effective in the browser environment that supports AbortController.
evalIn planning

document

Object/MethodBehavior
addEventListenerAny registered events are automatically removed from the document when the sandbox exits.
removeEventListener-
dispatchEventUnless declared in escapeDocumentEvents, events dispatched by default are only sent inside the sandbox and are not received externally.
openNo effect, the console will print a warning message.
closeNo effect, the console will print a warning message.
writeNo effect, the console will print a warning message.
writelnNo effect, the console will print a warning message.
replaceChildrenNo effect, the console will print a warning message.
getElementByIdQueries are limited to the application's own <haploid-html> element and its descendants.
getElementsByClassNameQueries are limited to the application's own <haploid-html> element and its descendants.
getElementsByTagNameSame as above, but if the argument is "html", "body", "head", or "title", then the corresponding <haploid->* element will be returned, for example:
document.getElementsByTagName("html") // <haploid-html>
document.getElementsByTagName("head") // <haploid-head>
document.getElementsByTagName("title") // <haploid-title>
document.getElementsByTagName("body") // <haploid-body>
querySelectorSame as above.
querySelectorAllSame as above.
getElementsByTagNameNSSame as above.
createCommentThe following properties of the created node are redefined:
  1. ownerDocument: the document proxy object, readonly
  2. baseURI: baseURI of ownerDocument, readonly
createDocumentFragmentSame as above.
createAttributeSame as above.
createAttributeNSSame as above.
createTextNodeSame as above.
createTextNodeSame as above, but:
  • If the argument is "script", a <haploid-script> element is created instead of a <script> element and is automatically downloaded and executed in the sandbox once inserted into <haploid-head>;
  • If the argument is "link", a <haploid-link> element is created instead of a <link> element and is automatically downloaded and takes effect in <style> once inserted into <haploid-head>; If CSS isolation is turned on, it will also be automatically converted
createElementNSSame as above.
defaultViewReturn window proxy object, readonly.
documentElementReturn the <haploid-html> element whose following attributes are redefined if the enableHtmlPretending is enabled:
  • tagName, nodeName are all "HTML"
  • parentNode is document proxy object
  • parentElement is null
  • version is empty string ""
  • constructor is HTMLHtmlElement
  • The prototype chain can be traced back to HTMLHtmlElement.prototype
titleReturns the text content of the <haploid-title> element, writable.
headReturn the above <haploid-head> element with the following attributes redefined if the enableHeadPretending is enabled:
  • tagName and nodeName are all "HEAD"
  • constructor is HTMLHeadElement
  • The prototype chain can be traced back to HTMLHeadElement.prototype
bodyReturn the above <haploid-body> element with the following attributes redefined if the enableBodyPretending is enabled:
  • tagName and nodeName are all "BODY"
  • constructor is HTMLBodyElement
  • The prototype chain can be traced back to HTMLBodyElement.prototype
allQueries are limited to the application's own <haploid-html> element and its descendants.
formsSame as above.
embedsSame as above.
pluginsSame as above.
imagesSame as above.
linksSame as above.
styleSheetsSame as above.
scriptsSame as above, but queries <haploid-script> instead of <script>.
childrenReturns a HTMLCollection only includes <haploid-html>.
childNodesReturn a NodeListOf&lt;ChildNode&gt; only includes <haploid-html>.
childElementCountReturns 1.
firstElementChildReturns <haploid-html>.
lastElementChildReturns <haploid-html>.
dirReturn dir attribute of <haploid-html>, writable.
hidden
visibilityState
baseURIThe entry URL is currently returned, or the current browser page URL, will support <base> in the future.
locationReturn the real location object, proxy it because of context constraints,location is not available from the proxy.
cookieReturns the real cookie object, Proxy it because of context restrictions, cookies cannot be obtained from the proxy.
readyStateReadonly, starts with "loading", changes to "interactive" before requesting sub-application CSS and JS, and becomes "complete" after requesting and executing if readystatechange is declared in autoDocumentEvents, a change in this property triggers the readystatechange event on the document proxy object, which is a local event.
lastModifiedReadonly, returns the parsed date string of the Last Modified HTTP Header of the entry URL in standard DD/MM/YY HH:ii:ss format. If there is no entry or the Header fails to be obtained, the current time is returned each time.

WARNING

The NodeListOf/HTMLAllCollection/HTMLCollection/HTMLCollectionOf/StyleSheetList that may be returned by the above API is Haploid.js Simulated structures are implemented because they cannot be constructed directly with constructors. Nevertheless, the instanceof judgment condition can still be satisfied

DANGER

document.all cannot achieve the same boolean representation as the true value, that is:

typeof document.all; // get "object", but should be "undefined"
if (document.all) {
} // get truthy, but should be falsy