Diff for /Amaya/amaya/styleparser.c between versions 1.218 and 1.219

version 1.218, 2003/08/25 13:20:24 version 1.219, 2003/08/27 10:46:16
Line 1703  static char *ParseCSSLineHeight (Element Line 1703  static char *ParseCSSLineHeight (Element
    xx-small, x-small, small, medium, large, x-large, xx-large           xx-small, x-small, small, medium, large, x-large, xx-large      
    or an absolute size, or an imcrement relative to the parent          or an absolute size, or an imcrement relative to the parent     
   ----------------------------------------------------------------------*/    ----------------------------------------------------------------------*/
   static char *ParseCSSFontSizeAdjust (Element element, PSchema tsch,
                                        PresentationContext context, char *cssRule,
                                        CSSInfoPtr css, ThotBool isHTML)
   {
     cssRule = SkipProperty (cssRule);
   }
   
   /*----------------------------------------------------------------------
      ParseCSSFontSize: parse a CSS font size attr string  
      we expect the input string describing the attribute to be     
      xx-small, x-small, small, medium, large, x-large, xx-large      
      or an absolute size, or an imcrement relative to the parent     
     ----------------------------------------------------------------------*/
 static char *ParseCSSFontSize (Element element, PSchema tsch,  static char *ParseCSSFontSize (Element element, PSchema tsch,
                                PresentationContext context, char *cssRule,                                 PresentationContext context, char *cssRule,
                                CSSInfoPtr css, ThotBool isHTML)                                 CSSInfoPtr css, ThotBool isHTML)
Line 3871  static CSSProperty CSSProperties[] = Line 3884  static CSSProperty CSSProperties[] =
    {"font-style", ParseCSSFontStyle},     {"font-style", ParseCSSFontStyle},
    {"font-variant", ParseCSSFontVariant},     {"font-variant", ParseCSSFontVariant},
    {"font-weight", ParseCSSFontWeight},     {"font-weight", ParseCSSFontWeight},
      {"font-size-adjust", ParseCSSFontSizeAdjust},
    {"font-size", ParseCSSFontSize},     {"font-size", ParseCSSFontSize},
    {"font", ParseCSSFont},     {"font", ParseCSSFont},
   

Removed from v.1.218  
changed lines
  Added in v.1.219


Webmaster