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
DOMSnitch is not catching a simple test where location.search.substring(1);
makes it's way to an innerHTML.
Test case is up here http://nottrusted.com/test/dom.html?x=y
Or to get an onmouseover event in:
http://nottrusted.com/test/dom.html?x=aa%3Ca%20href%3d%27a%27%20onmouseover=%27a
lert%281%29%27%3Eref%3C/a%3E
I used DOMinator which caught this and expected DOMSnitch to do the same.
Original issue reported on code.google.com by [email protected] on 8 Jul 2011 at 9:46
The text was updated successfully, but these errors were encountered:
This is due to a race condition between when DOM Snitch can properly traverse
the DOM tree (where everything is done via JavaScript without interacting
directly with any debug functionality in the V8 engine) and inline JS being
executed as part of parsing the HTML document. This is a known pain point and
there are active development works to address this sort of things. Stay tuned!
Original issue reported on code.google.com by
[email protected]
on 8 Jul 2011 at 9:46The text was updated successfully, but these errors were encountered: