Diff for /Amaya/amaya/styleparser.c between versions 1.181 and 1.182

version 1.181, 2003/02/03 11:14:39 version 1.182, 2003/02/04 16:32:14
Line 3136  static char *ParseCSSBackgroundImage (El Line 3136  static char *ParseCSSBackgroundImage (El
                             sizeof(PresentationContextBlock));                              sizeof(PresentationContextBlock));
   
                   /* check if the image url is related to an external CSS */                    /* check if the image url is related to an external CSS */
                   if (css && css->category == CSS_EXTERNAL_STYLE)                    if (css)
                     {                      {
                       NormalizeURL (url, 0, tempname, imgname, css->url);                        NormalizeURL (url, 0, tempname, imgname, css->url);
                       /* fetch and display background image of element */                        /* fetch and display background image of element */
Line 3144  static char *ParseCSSBackgroundImage (El Line 3144  static char *ParseCSSBackgroundImage (El
                                   ParseCSSBackgroundImageCallback, callblock);                                    ParseCSSBackgroundImageCallback, callblock);
                     }                      }
                   else                    else
                     FetchImage (0, el, url, AMAYA_LOAD_IMAGE,                      FetchImage (context->doc, el, url, AMAYA_LOAD_IMAGE,
                                 ParseCSSBackgroundImageCallback, callblock);                                  ParseCSSBackgroundImageCallback, callblock);
                 }                  }
             }              }

Removed from v.1.181  
changed lines
  Added in v.1.182


Webmaster