I'm wondering why a simple test action is called twice when browsed in chrome.
I am aware of the issue when its caused by img tags etc. But I have reproduced the issue using a simple (empty markup) action which only returns an H1 tag and nothing else.
Firefox and IE tested OK with this. Anyone got this issue before?
Here is the action method which gets called twice:
public ContentResult Test()
{
return Content("<h1>Test page<h1/>", "text/html");
}