Probably in my initial question there was not enough info, I was expecting someone pointing out that it should not behave like that. This was later proved by having a static page with missing favicon, which was handling 404 for this resource gracefully.
The answer actually was to do with Run All Modules options on http modules in the web.config, due to what static files (CSS, JS, *.ico, etc.) were run through ASP.Net pipeline.
We are using cassette for serving static files and the version of cassette we were using was not supporting RAMMFAR option being off.
These were changes to web.config, which stopped incorrect behaviour:
<modules runAllManagedModulesForAllRequests="false">
<add name="CassetteHttpModule" type="Cassette.Aspnet.CassetteHttpModule, Cassette.Aspnet" />
<add name="AuthenticationModule" type="ProjName.Web.HttpModules.AuthenticationModule" preCondition="managedHandler" />
<add name="ErrorModule" type="ProjName.Web.HttpModules.ErrorModule" preCondition="managedHandler" />
</modules>
Thank's everyone who was trying to help.
Resources which helped:
Scott Hanselman: http://www.hanselman.com/blog/BackToBasicsDynamicImageGenerationASPNETControllersRoutingIHttpHandlersAndRunAllManagedModulesForAllRequests.aspx
Rick Strahl: http://www.west-wind.com/weblog/posts/2012/Oct/25/Caveats-with-the-runAllManagedModulesForAllRequests-in-IIS-78