Bug Tracker

Changes between Initial Version and Version 1 of Ticket #13335, comment 8


Ignore:
Timestamp:
Jan 28, 2013, 10:24:22 AM (10 years ago)
Author:
dmethvin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13335, comment 8

    initial v1  
    55It seems like the main issue is that ASP.NET is using features unsupported by "use strict" and if you use ASP.NET then **none** of the code on your page can confidently be strict without risking this kind of problem.
    66
    7 That __doPostBack code is crazy. It "knows" that it was triggered by an event and traces back up the stack to find the original event handler, then grabs the first arg which is the event object. For IE it doesn't have to do that since `window.event` is a global.
     7That doPostBack code is crazy. It "knows" that it was triggered by an event and traces back up the stack to find the original event handler, then grabs the first arg which is the event object. For IE it doesn't have to do that since `window.event` is a global.