about summary refs log tree commit diff
path: root/src/test/rustdoc-gui/implementors.goml
AgeCommit message (Collapse)AuthorLines
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