LavaMoat / snow

Use Snow to finally secure your web app's same origin realms!
https://lavamoat.github.io/snow/demo/
MIT License
105 stars 9 forks source link

Snow fails to support compatibility with Shadow DOM #11

Closed weizman closed 2 years ago

weizman commented 2 years ago

the following:

a=document.createElement('div');
i=document.createElement('iframe');
s=a.attachShadow({mode:'open'});
s.appendChild(i);
document.head.append(a);

throws an uncaught error under Snow instead of working properly

weizman commented 2 years ago

this was discovered as part of issue #10