Uh oh!
There was an error while loading. Please reload this page.
Don't generate div inside header (h4/h3/h...) elements - #61263
Merged
Conversation
rust-highfive
commented
May 28, 2019
Contributor
The job Click to expand the log.I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
Manishearth
commented
May 29, 2019
Member
r=me with tests updated r? @Manishearth |
GuillaumeGomez
commented
May 31, 2019
MemberAuthor
@bors: r=Manishearth |
bors
commented
May 31, 2019
Collaborator
📌 Commit 3509162 has been approved by |
GuillaumeGomez
commented
May 31, 2019
MemberAuthor
@bors: rollup |
Centril added a commit
to Centril/rust
that referenced
this pull request
Jun 1, 2019
…earth Don't generate div inside header (h4/h3/h...) elements Fixesrust-lang#60865. According to the HTML spec, we're not supposed to put `div` elements inside heading elements (h4/h3/h...). It doesn't change the display as far as I could tell. r? @QuietMisdreavus
bors added a commit
that referenced
this pull request
Jun 1, 2019
Rollup of 8 pull requests Successful merges: - #60729 (Expand dynamic drop tests for cases in #47949) - #61263 (Don't generate div inside header (h4/h3/h...) elements) - #61364 (Stabilize reverse_bits feature) - #61375 (Make "panic did not include expected string" message consistent) - #61387 (Remove ty::BrFresh and RegionConstraintCollector::new_bound) - #61389 (Remove GlobalArenas and use Arena instead) - #61391 (Doc comment fixes for `rustc::mir::interpret::InterpretCx`) - #61403 (Remove unnecessary `-Z continue-parse-after-error` from tests) Failed merges: r? @ghost
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes#60865.
According to the HTML spec, we're not supposed to put
divelements inside heading elements (h4/h3/h...). It doesn't change the display as far as I could tell.r? @QuietMisdreavus