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

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


vicki       05/07/12 14:08:37

  Modified:    .        Tag: Safari-1-3-branch ChangeLog
               khtml/css Tag: Safari-1-3-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.4108.4.27 +14 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.4108.4.26
  retrieving revision 1.4108.4.27
  diff -u -r1.4108.4.26 -r1.4108.4.27
  --- ChangeLog	12 Jul 2005 21:04:40 -0000	1.4108.4.26
  +++ ChangeLog	12 Jul 2005 21:08:30 -0000	1.4108.4.27
  @@ -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-1-3-branch
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.95.6.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.6.1
  diff -u -r1.95 -r1.95.6.1
  --- cssparser.cpp	23 Feb 2005 03:44:13 -0000	1.95
  +++ cssparser.cpp	12 Jul 2005 21:08:36 -0000	1.95.6.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