> Blue - Documents,
> Green - Stylesheets,
> Purple - Images,
> Orange - Scripts
> Yellow - XMLHttpRequests
> Red - Fonts
> Gray - Websockets, Other requests (e.g. flash and other plugins)
Ah yes, thank you, all clear now. My page uses dojo, and the initial
dojo.js is orange and all remaining JS files are yellow as loaded
dynamically (this is a development system, not a final build).
> When you see HTML files as purple that could probably be a bug in Developer
> Tools or some problem on site.
> For example, if you have an empty url as a background-image in <style> tag
> in your html:
> <style>.some-class { background-image: url();} </style>
> For the browser that means that you want to use your HTML document as a
> background image, since urls are resolved relative to the document.
> This problem should have been fixed in recent versions though.
After a bit of experimenting I find that just putting <img /> into
a page causes the page URL itself to appear twice in the network panel
--- once at the start and once further down when the image tag is
processed --- and BOTH occurrences get coloured purple in this case.
This is with Chrome 14.0.835.202 m on Windows XP.
Many thanks for your clarifications! It might be useful for this info
to be added to
http://code.google.com/chrome/devtools/docs/network.html.
mooncow