I am currently testing the loading-behaviour of a website. Particularly I would like to test the FOUT (Description) in different browsers (FF, IE, Safari, Opera). In order to do that, I need to artificially delay the request that retrieves the font from the server.
Is there any predefined tool or way to achieve that?
My environment is ASP.NET with Visual Studio and the IIS-Express. I don't really want to implement a HttpHandler, since getting all the response-parameters perfectly right seems to be quiet hard.
WHy not proxy all your traffic through Fiddler and either use the throttling option to slow down all traffic, or put a breakpoint on the request for the font(s)?