On domain1.com I have a simple html page:
<h1 class="hello-world">Hello World!</h1>
This page references an external CSS file which is hosted over on domain2.com. All of the images within that CSS file are referenced using relative paths. E.g:
h1.hello-world {
background-image:url(/images/cute-kitten.gif);
}
When I load the page on domain1 does the browser try to reference the image 'domain1.com/images/cute-kitten.gif' or 'domain2.com/images/cute-kitten.gif'?
And will the result be the same in all (current) browsers?