Diff for /Amaya/amaya/styleparser.c between versions 1.82 and 1.83

version 1.82, 2001/03/02 16:19:21 version 1.83, 2001/03/30 12:18:10
Line 2023  static char *ParseCSSBackgroundColor (El Line 2023  static char *ParseCSSBackgroundColor (El
       else        else
         {          {
           savedtype = context->type;            savedtype = context->type;
           context->type = HTML_EL_HTML;            context->type = HTML_EL_Document;
         }          }
     }      }
   
Line 2251  static char *ParseCSSBackgroundImage (El Line 2251  static char *ParseCSSBackgroundImage (El
       else        else
         {          {
           savedtype = context->type;            savedtype = context->type;
           context->type = HTML_EL_HTML;            context->type = HTML_EL_Document;
         }          }
     }      }
   else if (element)    else if (element)
Line 2372  static char *ParseCSSBackgroundRepeat (E Line 2372  static char *ParseCSSBackgroundRepeat (E
       else        else
         {          {
           savedtype = context->type;            savedtype = context->type;
           context->type = HTML_EL_HTML;            context->type = HTML_EL_Document;
         }          }
     }      }
   
Line 2422  static char *ParseCSSBackgroundAttachmen Line 2422  static char *ParseCSSBackgroundAttachmen
       else        else
         {          {
           savedtype = context->type;            savedtype = context->type;
           context->type = HTML_EL_HTML;            context->type = HTML_EL_Document;
         }          }
     }      }
   
Line 2461  static char *ParseCSSBackgroundPosition Line 2461  static char *ParseCSSBackgroundPosition
       else        else
         {          {
           savedtype = context->type;            savedtype = context->type;
           context->type = HTML_EL_HTML;            context->type = HTML_EL_Document;
         }          }
     }      }
   

Removed from v.1.82  
changed lines
  Added in v.1.83


Webmaster