Reputation: 8312
Caniuse.com clearly says that IE8 and IE9 does NOT support HTML5 History, however if i emulate IE8 in Microsoft Edge developer tools, and check with modernizr:
if(Modernizr.history) {
alert("History is available");
} else {
alert("History is NOT available");
}
I get that history IS actually available?
Upvotes: 0
Views: 50
Reputation: 13974
Emulation is not a reliable way to test things. You should try using the real browser, from something like SauceLabs and browserstack, or using one of the free VMs from https://modern.ie
To answer your question - no.
Upvotes: 1
Reputation: 537
Emulation is not the same as actual IE 8, this might be the cause I suggest to set up virtual machine with IE8 and check yourself.
Upvotes: 0