Sasha Firsov

Results 91 comments of Sasha Firsov

# Time for v1.0 As proof of concept `embed-page` has done its work. It is given the demo ability for microapplication container, provided most of functionality via standard browser API,...

# Web components Would need insulation withing microapplication container as default scope is global. Could be solved by namespacing in XmlDocument. Default namespace would be defined on document and documentElement...

# virtual DOM vs polyfill ## XmlDocument XmlDocument could be used as virtual DOM capable of HtmlDocument functionality. All changes to virtual document could be reflected in microapplication container. Since...

`javascript:code` would be fired when link/form submit triggered. Returned value is used as destination.

_How to make the window properties exposed as global( in EPA scope ) objects?_ The top level objects are window and document. The trick is to make the window objects...

_How to trap global location object assignment?_ **Location** object is a tricky as it should be identical between **window.location**, **document.location** and global **location** object. The need to override assignment of...

At this stage the solution chosen for `location=url` is to convert it into `window.location=url` during script load. It does not solve the `eval( "location=url" )` case which will complain on...

While thinking on window management in `` the convention of cross-app grouping been revised again. JS frames( aka windows ) are referenced to each other via `name` or directly obtained...

## `target` attribute on `` dedicated for "identity session". It does not mean the hyperlinks and forms will be targeting the specific frame, rather it will define the scope where...

All scripts inside of meant to run in same scope, meaning sharing the global `window.xxx` functions and variables. JS engine does not give an access to enumeration of scope variables...