Diff for /Amaya/amaya/styleparser.c between versions 1.334 and 1.335

version 1.334, 2005/12/01 17:15:34 version 1.335, 2005/12/19 12:23:31
Line 4536  static char *ParseACSSBackgroundPosition Line 4536  static char *ParseACSSBackgroundPosition
   else    else
     ok = FALSE;      ok = FALSE;
   
   if (ok && DoApply)    if (ok)
     {      {
       /* check if it's an important rule */        /* check if it's an important rule */
       cssRule = CheckImportantRule (cssRule, ctxt);        cssRule = CheckImportantRule (cssRule, ctxt);
Line 4560  static char *ParseCSSBackgroundPosition Line 4560  static char *ParseCSSBackgroundPosition
   cssRule = ParseACSSBackgroundPosition (element, tsch, ctxt,    cssRule = ParseACSSBackgroundPosition (element, tsch, ctxt,
                                          cssRule, css, isHTML);                                           cssRule, css, isHTML);
   if (ptr == cssRule)    if (ptr == cssRule)
     cssRule = ParseACSSBackgroundPosition (element, tsch, ctxt,  
                                            cssRule, css, isHTML);  
   if (ptr == cssRule)  
     {      {
       cssRule = SkipValue ("Invalid background-position value", cssRule);        cssRule = SkipValue ("Invalid background-position value", cssRule);
       /* check if it's an important rule */        /* check if it's an important rule */
Line 4575  static char *ParseCSSBackgroundPosition Line 4572  static char *ParseCSSBackgroundPosition
       cssRule = ParseACSSBackgroundPosition (element, tsch, ctxt,        cssRule = ParseACSSBackgroundPosition (element, tsch, ctxt,
                                              cssRule, css, isHTML);                                               cssRule, css, isHTML);
       if (ptr == cssRule)        if (ptr == cssRule)
         cssRule = ParseACSSBackgroundPosition (element, tsch, ctxt,  
                                                cssRule, css, isHTML);  
       if (ptr == cssRule)  
         {          {
           cssRule = SkipValue ("Invalid background-position value", cssRule);            cssRule = SkipValue ("Invalid background-position value", cssRule);
           /* check if it's an important rule */            /* check if it's an important rule */

Removed from v.1.334  
changed lines
  Added in v.1.335


Webmaster