Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable browser history API on file:/// URLs #28400

Merged
merged 1 commit into from
Sep 19, 2015

Conversation

badboy
Copy link
Member

@badboy badboy commented Sep 14, 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

Closes #25953

@rust-highfive
Copy link
Contributor

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @steveklabnik (or someone else) soon.

If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. The way Github handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.

Please see the contribution instructions for more information.

@alexispurslane
Copy link
Contributor

@badboy you should probably squash your commits. That's what is normally wanted if your pull request is left sitting for a long time. (I'm not a Collaborator or an Owner, so I don't know, but that is what happened to me a few times)

@badboy
Copy link
Member Author

badboy commented Sep 14, 2015

It's just a few hours yet. I happily squash them though.

@@ -54,7 +54,8 @@
}

function browserSupportsHistoryApi() {
return window.history && typeof window.history.pushState === "function";
return document.origin != "null" &&
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

document.origin doesn't seem to be well-supported: https://developer.mozilla.org/en-US/docs/Web/API/Document/origin

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like document.defaultView.location.origin might be the compatible way?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting, and I thought this was the standard. I will update & test in Firefox as well.

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 rust-lang#25953
@badboy badboy force-pushed the disable-browser-history-on-file branch from 493e1c9 to 7f5ec6c Compare September 14, 2015 20:49
@badboy
Copy link
Member Author

badboy commented Sep 14, 2015

force-pushed, now using document.location.protocol, which should be portable enough.

@steveklabnik
Copy link
Member

@bors: r+ rollup

@bors
Copy link
Collaborator

bors commented Sep 18, 2015

📌 Commit 7f5ec6c has been approved by steveklabnik

steveklabnik added a commit to steveklabnik/rust that referenced this pull request Sep 19, 2015
…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

Closes rust-lang#25953
bors added a commit that referenced this pull request Sep 19, 2015
@bors bors merged commit 7f5ec6c into rust-lang:master Sep 19, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants