[webkit-changes] cvs commit: WebCore/khtml/css cssparser.cpp

Vicki vicki at opensource.apple.com
Tue Jul 12 14:10:37 PDT 2005


vicki       05/07/12 14:10:37

  Modified:    .        Tag: Safari-2-0-branch ChangeLog
               khtml/css Tag: Safari-2-0-branch cssparser.cpp
  Log:
  	- merge this fix from HEAD
  
      2005-04-22  David Hyatt  <hyatt at apple.com>
  
  	Fix for 4096681, fix regression in how the list-style property is parsed.  It no longer parses when it hits
  	a url in the property value list now, because the list pointer did not get advanced.  This fixes alistapart.com.
  
          Reviewed by john
  
          * khtml/css/cssparser.cpp:
          (CSSParser::parseValue):
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.4104.2.55 +14 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.4104.2.54
  retrieving revision 1.4104.2.55
  diff -u -r1.4104.2.54 -r1.4104.2.55
  --- ChangeLog	12 Jul 2005 21:05:57 -0000	1.4104.2.54
  +++ ChangeLog	12 Jul 2005 21:10:30 -0000	1.4104.2.55
  @@ -1,3 +1,17 @@
  +2005-07-12  Vicki Murley  <vicki at apple.com>
  +
  +	- merge this fix from HEAD
  +
  +    2005-04-22  David Hyatt  <hyatt at apple.com>
  +
  +	Fix for 4096681, fix regression in how the list-style property is parsed.  It no longer parses when it hits
  +	a url in the property value list now, because the list pointer did not get advanced.  This fixes alistapart.com.
  +	
  +        Reviewed by john
  +
  +        * khtml/css/cssparser.cpp:
  +        (CSSParser::parseValue):
  +
   2005-07-12  Adele Peterson  <adele at apple.com>
   
           Merge fix from TOT to Safari-2-0-branch
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.95.8.1  +1 -0      WebCore/khtml/css/cssparser.cpp
  
  Index: cssparser.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/css/cssparser.cpp,v
  retrieving revision 1.95
  retrieving revision 1.95.8.1
  diff -u -r1.95 -r1.95.8.1
  --- cssparser.cpp	23 Feb 2005 03:44:13 -0000	1.95
  +++ cssparser.cpp	12 Jul 2005 21:10:36 -0000	1.95.8.1
  @@ -723,6 +723,7 @@
   		parsedValue = new CSSImageValueImpl(
   		    DOMString(KURL( styleElement->baseURL().string(), uri.string()).url()),
   		    styleElement);
  +                valueList->next();
   	    }
   	}
           break;
  
  
  



More information about the webkit-changes mailing list