It seems that the history plugin assassinates the title when the page loads:

Presumably this is caused by the weird behaviour that goes on in setTitle, where a blank c.title is meant to be replaced when getStateByIndex(0) returns a value...only it never does, because it's defined as
a.getStateByIndex = function(a) {
return null
};
...which certainly doesn't appear to be the current implementation. Presumably updating the plugin would fix the problem by allowing it to at least branch to the part that conditionally assigns the title as a.options.initialTitle (which is set correctly), but I'd have to test to be positive.
Of course, this isn't a problem for Firefox since it doesn't fire the initial popstate event that causes this code to be called on load in Chrome (and Opera, based on the comments above).
<title>tag is there, and so is the title. – Cody Gray May 2 '12 at 7:42