You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The missing global __proto__ ACL defaults to the default global object policy [S_GLOBAL], which does not allow Object.getOwnPropertyDescriptors() access and throws Cannot access __proto__
Fix
Skip __proto__ property in looping through the descriptors in my-view2.html
The text was updated successfully, but these errors were encountered:
[demo] my-view2.html does not show up
Root Cause
window['__proto__']
access, which is for constructing the graph data fromwindow
object,window.__proto__ === Window.prototype
object is tracked as__proto__
global object for ACL.__proto__
ACL defaults to the default global object policy[S_GLOBAL]
, which does not allowObject.getOwnPropertyDescriptors()
access and throwsCannot access __proto__
Fix
__proto__
property in looping through the descriptors inmy-view2.html
The text was updated successfully, but these errors were encountered: