[webkit-changes] cvs commit: WebCore/khtml/ecma kjs_events.cpp

Timothy thatcher at opensource.apple.com
Wed Oct 5 09:11:30 PDT 2005


thatcher    05/10/05 09:11:30

  Modified:    .        Tag: Safari-2-0-branch ChangeLog
               khtml/ecma Tag: Safari-2-0-branch kjs_events.cpp
  Log:
          Merged fix from TOT to Safari-2-0-branch
  
      2005-10-04  Maciej Stachowiak  <mjs at apple.com>
  
          Reviewed by Eric.
  
  	    <rdar://problem/4285236> Denver Regression: crash repeatedly reloading www.supermanhomepage.com
  
  	    I couldn't figure out how to make a reproducible test case for this. The failure is
  	    random memory trashing.
  
          * khtml/ecma/kjs_events.cpp:
          (KJS::JSAbstractEventListener::handleEvent):
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.34  +16 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.1.2.33
  retrieving revision 1.1.2.34
  diff -u -r1.1.2.33 -r1.1.2.34
  --- ChangeLog	4 Oct 2005 00:56:27 -0000	1.1.2.33
  +++ ChangeLog	5 Oct 2005 16:11:26 -0000	1.1.2.34
  @@ -1,3 +1,19 @@
  +2005-10-05  Timothy Hatcher  <timothy at apple.com>
  +
  +        Merged fix from TOT to Safari-2-0-branch
  +
  +    2005-10-04  Maciej Stachowiak  <mjs at apple.com>
  +
  +        Reviewed by Eric.
  +
  +	    <rdar://problem/4285236> Denver Regression: crash repeatedly reloading www.supermanhomepage.com
  +	
  +	    I couldn't figure out how to make a reproducible test case for this. The failure is
  +	    random memory trashing.
  +
  +        * khtml/ecma/kjs_events.cpp:
  +        (KJS::JSAbstractEventListener::handleEvent):
  +
   2005-10-03  Timothy Hatcher  <timothy at apple.com>
   
           Merged fix from TOT to Safari-2-0-branch
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.42.8.8  +3 -4      WebCore/khtml/ecma/kjs_events.cpp
  
  Index: kjs_events.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/ecma/kjs_events.cpp,v
  retrieving revision 1.42.8.7
  retrieving revision 1.42.8.8
  diff -u -r1.42.8.7 -r1.42.8.8
  --- kjs_events.cpp	16 Sep 2005 02:34:10 -0000	1.42.8.7
  +++ kjs_events.cpp	5 Oct 2005 16:11:29 -0000	1.42.8.8
  @@ -121,11 +121,10 @@
           if (ret.type() == QVariant::Bool && ret.toBool() == false)
               evt.preventDefault();
       }
  -  }
   
  -  DOM::DocumentImpl::updateDocumentsRendering();
  -  
  -  deref();
  +    DOM::DocumentImpl::updateDocumentsRendering();
  +    deref();
  +  }
   }
   
   DOM::DOMString JSAbstractEventListener::eventListenerType()
  
  
  



More information about the webkit-changes mailing list