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
produces an actual div with an onclick since #3808. Less maliciously,
<div>{'<'}</div>
renders as <. The text isn't getting escaped. I don't think there's currently any runtime escaping of entities in DOM code, but with these changes, we'll need some. If this proves too challenging, we should revert #3808 for now.
The text was updated successfully, but these errors were encountered:
Runtime escaping wasn't needed when everything was created as a text node. Is the slight code size decrease worth the increased risk and cost of runtime escaping?
This should have its own issue so it's not forgotten about before the next alpha, because this is a nasty one.
No REPL link because this isn't released yet, but:
produces an actual div with an onclick since #3808. Less maliciously,
renders as
<
. The text isn't getting escaped. I don't think there's currently any runtime escaping of entities in DOM code, but with these changes, we'll need some. If this proves too challenging, we should revert #3808 for now.The text was updated successfully, but these errors were encountered: