Status: New
Owner: [email protected]
Labels: Type-Defect Priority-Medium
New issue 1445 by [email protected]: "script is busy" dialogs may allow
resize/blur handlers to fire
http://code.google.com/p/google-caja/issues/detail?id=1445
'the “A script on this page may be busy...” dialogue box, even if you
choose to let the script continue to run, allows events like resize and
blur to fire and be handled even whilst the script is in the middle of a
busy-loop, except in Opera.'
[ from
http://stackoverflow.com/questions/2734025/is-javascript-guaranteed-to-be-single-threaded/2734311#2734311
]
I don't think handlers firing during an alert() is a problem, but handlers
firing during a "may be busy" might be a problem. can avoid that by
forcing handlers to be deferring with setTimeout.