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

Timothy thatcher at opensource.apple.com
Thu Nov 10 15:51:46 PST 2005


thatcher    05/11/10 15:51:45

  Modified:    .        Tag: Safari-1-3-branch ChangeLog
               khtml/ecma Tag: Safari-1-3-branch kjs_html.cpp
  Log:
          Merged fix from TOT to Safari-1-3-branch
  
      2005-11-10  Eric Seidel  <eseidel at apple.com>
  
          Reviewed by ggaren.
  
          * khtml/ecma/kjs_html.cpp:
          (KJS::Image::getValueProperty): resolve relative urls in Image::src
          http://bugzilla.opendarwin.org/show_bug.cgi?id=3473
          <rdar://problem/3787988> Preloaded Image objects .src field is not a fully resolved path (3473)
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.335.2.8 +13 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.335.2.7
  retrieving revision 1.335.2.8
  diff -u -r1.335.2.7 -r1.335.2.8
  --- ChangeLog	10 Nov 2005 23:02:29 -0000	1.335.2.7
  +++ ChangeLog	10 Nov 2005 23:51:41 -0000	1.335.2.8
  @@ -2,6 +2,19 @@
   
           Merged fix from TOT to Safari-1-3-branch
   
  +    2005-11-10  Eric Seidel  <eseidel at apple.com>
  +
  +        Reviewed by ggaren.
  +
  +        * khtml/ecma/kjs_html.cpp:
  +        (KJS::Image::getValueProperty): resolve relative urls in Image::src
  +        http://bugzilla.opendarwin.org/show_bug.cgi?id=3473
  +        <rdar://problem/3787988> Preloaded Image objects .src field is not a fully resolved path (3473)
  +
  +2005-11-10  Timothy Hatcher  <timothy at apple.com>
  +
  +        Merged fix from TOT to Safari-1-3-branch
  +
       2005-11-09  Dave Hyatt  <hyatt at apple.com>
       
           Fixed <rdar://problem/4237617> selects should be in the tab order
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.108.4.3 +1 -1      WebCore/khtml/ecma/kjs_html.cpp
  
  Index: kjs_html.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/ecma/kjs_html.cpp,v
  retrieving revision 1.108.4.2
  retrieving revision 1.108.4.3
  diff -u -r1.108.4.2 -r1.108.4.3
  --- kjs_html.cpp	13 Jul 2005 05:17:59 -0000	1.108.4.2
  +++ kjs_html.cpp	10 Nov 2005 23:51:44 -0000	1.108.4.3
  @@ -3416,7 +3416,7 @@
   {
     switch (token) {
     case Src:
  -    return String(src);
  +    return String(doc ? doc->completeURL(src.domString()) : src);
     case Complete:
       return Boolean(!img || img->status() >= khtml::CachedObject::Persistent);
     case OnLoad:
  
  
  



More information about the webkit-changes mailing list