Neil Fraser
Neil Fraser
This PR would break this product by printing raw HTML on the user's screen.
This PR would cause raw HTML tags to be printed on the user's screen.
In this case `innerHTML` is being used as a getter, not a setter, so the existing code is perfectly safe. Further, it appears that changing this to text-only would break...
@cpcallen Here's a bit of a mystery. This is pure spec-compliant JavaScript, no consideration of JS-Interpreter is needed. Here's an Object with some hooks on toString and valueOf. ``` var...
Ah, there's a specific exception for Date objects: https://262.ecma-international.org/5.1/#sec-11.6.1 > No hint is provided in the calls to ToPrimitive in steps 5 and 6. All native ECMAScript objects except Date...
I'm not on this project's team, but this PR would result in raw HTML being printed on the user's screen. Here `innerHTML` is being used intentionally since there's an ``...