You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Uncaught SecurityError: Failed to execute 'pushState' on 'History': A history state object with URL 'file:///Users/me/Projects/rust/doc/std/index.html?search=hello' cannot be created in a document with origin 'null'.search @ main.js:578
I recognize that I'm using a beta browser version, and that the team may not wish to support these browsers. However, it's easy for me to report it, just in case it becomes a problem with the next released version!
Meta
Chrome Version 45.0.2454.85 (64-bit)
OS X
rustc 1.2.0
The text was updated successfully, but these errors were encountered:
huonw
added
the
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
label
Jun 2, 2015
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
Closesrust-lang#25953
…ile, 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
Closesrust-lang#25953
The console reports this error:
This is the line of JS in question.
I recognize that I'm using a beta browser version, and that the team may not wish to support these browsers. However, it's easy for me to report it, just in case it becomes a problem with the next released version!
Meta
rustc 1.2.0
The text was updated successfully, but these errors were encountered: