Changes between Initial Version and Version 12 of Ticket #9958


Ignore:
Timestamp:
Jun 4, 2013, 12:14:00 PM (11 years ago)
Author:
Jakub Ś
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9958

    • Property Status changed from new to confirmed
    • Property Keywords IE added
  • Ticket #9958 – Description

    initial v12  
    1717
    1818Is anyway to avoid it?
     19
     20----
     21**Edit:**[[BR]]
     22Native way to reproduce:
     23{{{
     24window.onbeforeunload = function(){
     25        return 'beforeunload';
     26};     
     27}}}
     28
     29Below causes onbeforeunload only in IE9 and IE10 (mentioned in #10484):
     30{{{
     31window.attachEvent('onbeforeunload', function() {
     32        return 'You will lose your content.';
     33});
     34}}}
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy