1
Fork 0

Rollup merge of #28400 - badboy:disable-browser-history-on-file, r=steveklabnik

history.pushState is defined, but not working whenever document.origin is "null"
(literally that string, not just the null object).
This is due to some security considerations and is unlikely to be ever working.

For now just disable the usage of the history API when the documentation
is accessed through a file:/// URL.

See https://code.google.com/p/chromium/issues/detail?id=301210 for a
Chrome-specific issue on the history API on file:/// URLs

Closes #25953
This commit is contained in:
Steve Klabnik 2015-09-19 11:15:47 -04:00
commit 6872d13e96

View file

@ -54,7 +54,8 @@
}
function browserSupportsHistoryApi() {
return window.history && typeof window.history.pushState === "function";
return document.location.protocol != "file:" &&
window.history && typeof window.history.pushState === "function";
}
function highlightSourceLines(ev) {