Edit:
As I have no clue about how Mozilla works, so I have to guess from reading some code. From the channel's point of view, once the original file is loaded, its job is done. If you want to load the secondary items linked in file like an image, you have to implement that in the listener. See TestPageLoad.cpp. It implements a crude parser and it retrieves child items upon OnDataAvailable:
The important thing is that it calls streamParse(), which looks at src attribute of img and script element, and calls auxLoad(), which creates new channel with new listener and calls AsyncOpen().
uriList->AppendElement(uri);rv = NS_NewChannel(getter_AddRefs(chan), uri, nsnull, nsnull, callbacks);RETURN_IF_FAILED(rv, "NS_NewChannel");rv = chan->AsyncOpen(listener, myBool);RETURN_IF_FAILED(rv, "AsyncOpen");Since it's passing in another instance of MyListener object in there, that can also load more child items ad infinitum like a Russian doll situation.
