about summary refs log tree commit diff
path: root/src/test/rustdoc-gui/implementors.goml
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-41/+0
2023-01-03rustdoc: fix buggy JS check for absolute URLMichael Howell-0/+6
The old code did the wrong thing when faced with a crate named "http".
2022-10-07Update rustdoc-gui test to new browser-ui-test versionGuillaume Gomez-4/+4
2022-09-25Round offset to whole integerMichael Howell-2/+2
2022-09-25rustdoc: clean up `.out-of-band`/`.in-band` CSSMichael Howell-4/+4
* Remove the `float: right` fallback from the main header, which hasn't been needed since IE11 support was dropped. * Remove `in-band` from low-level headers, which hasn't been needed since `.rightside` switched to `float: right` in 593d6d1cb15c55c88319470dabb40126c7b7f1e2 * Remove unreachable `.in-band > code, .in-band > .code-header` CSS, since the `in-band` class was attached to the `code-header` itself, not nested directly below it. * Use `rem` instead of `em` for code header margins. * This results in a slight change in spacing around impls and item-info, but since it makes it more consistent with the way methods are presented, it's probably fine.
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