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

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


thatcher    05/10/05 09:09:19

  Modified:    .        Tag: Safari-Den-branch ChangeLog
               khtml/ecma Tag: Safari-Den-branch kjs_events.cpp
  Log:
          Merged fix from TOT to Safari-Den-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.23.2.7 +16 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.1.2.23.2.6
  retrieving revision 1.1.2.23.2.7
  diff -u -r1.1.2.23.2.6 -r1.1.2.23.2.7
  --- ChangeLog	4 Oct 2005 03:56:41 -0000	1.1.2.23.2.6
  +++ ChangeLog	5 Oct 2005 16:09:17 -0000	1.1.2.23.2.7
  @@ -1,3 +1,19 @@
  +2005-10-05  Timothy Hatcher  <timothy at apple.com>
  +
  +        Merged fix from TOT to Safari-Den-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):
  +
   === WebCore-416.9 ===
   
   2005-10-03  Timothy Hatcher  <timothy at apple.com>
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.42.8.6.2.2 +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.6.2.1
  retrieving revision 1.42.8.6.2.2
  diff -u -r1.42.8.6.2.1 -r1.42.8.6.2.2
  --- kjs_events.cpp	16 Sep 2005 02:54:29 -0000	1.42.8.6.2.1
  +++ kjs_events.cpp	5 Oct 2005 16:09:19 -0000	1.42.8.6.2.2
  @@ -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