-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Cannot type letter 's' into search box in Nightly Rust Doc [1.26.0-nightly (392645394 2018-03-15)] #49075
Labels
C-bug
Category: This is a bug.
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
Comments
kennytm
added
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
C-bug
Category: This is a bug.
labels
Mar 16, 2018
Looks like 9e0ccc5 is the culprit, @GuillaumeGomez ... |
Temp fix: - if (document.activeElement.tagName === "INPUT" &&
+ if (document.activeElement.tagName === "INPUT" || Then both |
Oh damn, indeed! |
@mzji Yes that works! Thank you! |
No, the fix breaks why it has been implemented first. It fixes this issue, but not why I made this change. I need to look further. |
Ok, fix done. I'll make the PR this evening. |
kennytm
added a commit
to kennytm/rust
that referenced
this issue
Mar 20, 2018
…ng, r=QuietMisdreavus Fix events handling in rustdoc Fixes rust-lang#49075.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
C-bug
Category: This is a bug.
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
Issue
The search box in the latest nightly std documentation does not allow the letter 's' to be entered into it.
Both the local copy available via
rustup doc
and the online one available at https://doc.rust-lang.org/nightly/std are affected. This problem happens on Chrome Beta, Firefox and Edge.Note
The stable documentation [Version 1.24.1 (d3ae9a9 2018-02-27)] does not have this issue. Neither does the beta documentation [Version 1.25.0-beta.10 (de97991 2018-03-13)].
I also tested the previous nightly (nightly-2018-03-07) and at least for the local copy of the doc, it did not have this issue. Therefore it must be the latest nightly that broke the search box.
The text was updated successfully, but these errors were encountered: