What is imgILoadGroup and imgIChannel for?
There are no such interfaces...
Where and how does caching of images work?
imgILoader.loadImage will start an image load and place it in the cache so that other requests for the same image hook on to the same load, basically.
Especially, I want to load an image once and then use the cached image: should I keep a reference to imgIRequest or to imgIContainer. Or should I call LoadImage of imgILoaded each time before painting?
You should hold a reference to the imgIRequest (especially because that's the only way to get animated images right).
-Boris _______________________________________________ mozilla-layout mailing list [email protected] http://mail.mozilla.org/listinfo/mozilla-layout
