about summary refs log tree commit diff
path: root/src/test/rustdoc-gui/implementors.goml
AgeCommit message (Collapse)AuthorLines
2022-07-05Update rustdoc testsGuillaume Gomez-2/+10
2022-07-05rustdoc: Add more semantic information to impl idspierwill-2/+2
Instead of generating `#impl`, `#impl-1`, etc., generate IDs like `#impl-Foo<M>`. Co-authored-by: Noah Lev <camelidcamel@gmail.com>
2022-05-06Add missing newlineMichael Howell-1/+1
2022-05-05rustdoc: ensure HTML/JS side implementors don't have dupsMichael Howell-0/+7
2022-02-09rustdoc: fix spacing of non-toggled impl blocksJacob Hoffman-Andrews-0/+4
We recently removed the "up here" arrows on item-infos, and adjusted vertical spacing so that even without the arrow, it would be visually clear which item the item-info belonged to. The new CSS styles for vertical spacing only applied to toggles, though. This missed non-toggled impl blocks - for instance, those without any methods, like https://doc.rust-lang.org/nightly/std/marker/trait.Send.html#implementors. The result was lists of implementors that were spaced too closely. This PR fixes the spacing by making it apply to non-toggled impl blocks as well. This also fixes an issue where item-infos were displayed too far below their items. That was a result of display: table on .item-info .stab. Changed that to display: inline-block.
2021-09-01Add tests for implementors associated types displayGuillaume Gomez-9/+9
2021-07-25Rustdoc accessibility: use real headers for doc itemsbors-2/+2
Part of #87059 Partially reverts #84703 Preview at: https://notriddle.com/notriddle-rustdoc-test/real-headers/std/index.html
2021-07-12Add test for implementorsGuillaume Gomez-0/+16