forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#90186 - jsha:fix-header-sizes, r=GuillaumeGomez
Fix documentation header sizes And add a rustdoc-gui test confirming various header sizes. Split off from rust-lang#90156. This fixes a regression in rust-lang#89506 where the heading level of titles within Markdown was too high (h2) for docblocks under structs, unions, and enum impls. r? `@camelid` Demo: https://jacob.hoffman-andrews.com/rust/fix-header-sizes/std/string/struct.String.html#impl-Add%3C%26%27_%20str%3E Stable: https://doc.rust-lang.org/stable/std/string/struct.String.html#impl-Add%3C%26%27_%20str%3E Beta: https://doc.rust-lang.org/beta/std/string/struct.String.html#impl-Add%3C%26%27_%20str%3E
- Loading branch information
Showing
5 changed files
with
232 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
// This test check that headers (a) have the correct heading level, and (b) are the right size. | ||
// The sizes may change as design changes, but try to make sure a lower header is never bigger than | ||
// its parent headers. | ||
// Most of these sizes are set in CSS in `em` units, so here's a conversion chart based on our | ||
// default 16px font size: | ||
// 24px 1.5em | ||
// 22.4px 1.4em | ||
// 20.8px 1.3em | ||
// 18.4px 1.15em | ||
// 17.6px 1.1em | ||
// 16px 1em | ||
// 15.2px 0.95em | ||
goto: file://|DOC_PATH|/test_docs/struct.HeavilyDocumentedStruct.html | ||
|
||
assert-css: ("h1.fqn", {"font-size": "24px"}) | ||
|
||
assert-css: ("h2#top-doc-prose-title", {"font-size": "20.8px"}) | ||
assert-css: ("h3#top-doc-prose-sub-heading", {"font-size": "18.4px"}) | ||
assert-css: ("h4#top-doc-prose-sub-sub-heading", {"font-size": "17.6px"}) | ||
|
||
assert-css: ("h2#fields", {"font-size": "22.4px"}) | ||
assert-css: ("h3#title-for-field", {"font-size": "20.8px"}) | ||
assert-css: ("h4#sub-heading-for-field", {"font-size": "16px"}) | ||
|
||
assert-css: ("h2#implementations", {"font-size": "22.4px"}) | ||
|
||
assert-css: ("#impl > h3.code-header", {"font-size": "17.6px"}) | ||
assert-css: ("#method\.do_nothing > h4.code-header", {"font-size": "16px"}) | ||
|
||
assert-css: ("h4#title-for-struct-impl-doc", {"font-size": "16px"}) | ||
assert-css: ("h5#sub-heading-for-struct-impl-doc", {"font-size": "16px"}) | ||
assert-css: ("h6#sub-sub-heading-for-struct-impl-doc", {"font-size": "15.2px"}) | ||
|
||
assert-css: ("h5#title-for-struct-impl-item-doc", {"font-size": "16px"}) | ||
assert-css: ("h6#sub-heading-for-struct-impl-item-doc", {"font-size": "15.2px"}) | ||
assert-css: ("h6#sub-sub-heading-for-struct-impl-item-doc", {"font-size": "15.2px"}) | ||
|
||
goto: file://|DOC_PATH|/test_docs/enum.HeavilyDocumentedEnum.html | ||
|
||
assert-css: ("h1.fqn", {"font-size": "24px"}) | ||
|
||
assert-css: ("h2#top-doc-prose-title", {"font-size": "20.8px"}) | ||
assert-css: ("h3#top-doc-prose-sub-heading", {"font-size": "18.4px"}) | ||
assert-css: ("h4#top-doc-prose-sub-sub-heading", {"font-size": "17.6px"}) | ||
|
||
assert-css: ("h2#variants", {"font-size": "22.4px"}) | ||
|
||
assert-css: ("h3#none-prose-title", {"font-size": "20.8px"}) | ||
assert-css: ("h4#none-prose-sub-heading", {"font-size": "16px"}) | ||
|
||
assert-css: ("h3#wrapped-prose-title", {"font-size": "20.8px"}) | ||
assert-css: ("h4#wrapped-prose-sub-heading", {"font-size": "16px"}) | ||
|
||
assert-css: ("h4#wrapped0-prose-title", {"font-size": "16px"}) | ||
assert-css: ("h5#wrapped0-prose-sub-heading", {"font-size": "16px"}) | ||
|
||
assert-css: ("h4#structy-prose-title", {"font-size": "16px"}) | ||
assert-css: ("h5#structy-prose-sub-heading", {"font-size": "16px"}) | ||
|
||
assert-css: ("h2#implementations", {"font-size": "22.4px"}) | ||
|
||
assert-css: ("#impl > h3.code-header", {"font-size": "17.6px"}) | ||
assert-css: ("#method\.do_nothing > h4.code-header", {"font-size": "16px"}) | ||
|
||
assert-css: ("h4#title-for-enum-impl-doc", {"font-size": "16px"}) | ||
assert-css: ("h5#sub-heading-for-enum-impl-doc", {"font-size": "16px"}) | ||
assert-css: ("h6#sub-sub-heading-for-enum-impl-doc", {"font-size": "15.2px"}) | ||
|
||
assert-css: ("h5#title-for-enum-impl-item-doc", {"font-size": "16px"}) | ||
assert-css: ("h6#sub-heading-for-enum-impl-item-doc", {"font-size": "15.2px"}) | ||
assert-css: ("h6#sub-sub-heading-for-enum-impl-item-doc", {"font-size": "15.2px"}) | ||
|
||
goto: file://|DOC_PATH|/test_docs/union.HeavilyDocumentedUnion.html | ||
|
||
assert-css: ("h1.fqn", {"font-size": "24px"}) | ||
|
||
assert-css: ("h2#top-doc-prose-title", {"font-size": "20.8px"}) | ||
assert-css: ("h3#top-doc-prose-sub-heading", {"font-size": "18.4px"}) | ||
|
||
assert-css: ("h2#fields", {"font-size": "22.4px"}) | ||
|
||
assert-css: ("h3#title-for-union-variant", {"font-size": "20.8px"}) | ||
assert-css: ("h4#sub-heading-for-union-variant", {"font-size": "16px"}) | ||
|
||
assert-css: ("h2#implementations", {"font-size": "22.4px"}) | ||
|
||
assert-css: ("#impl > h3.code-header", {"font-size": "17.6px"}) | ||
assert-css: ("h4#title-for-union-impl-doc", {"font-size": "16px"}) | ||
assert-css: ("h5#sub-heading-for-union-impl-doc", {"font-size": "16px"}) | ||
|
||
assert-css: ("h5#title-for-union-impl-item-doc", {"font-size": "16px"}) | ||
assert-css: ("h6#sub-heading-for-union-impl-item-doc", {"font-size": "15.2px"}) | ||
|
||
goto: file://|DOC_PATH|/test_docs/macro.heavily_documented_macro.html | ||
|
||
assert-css: ("h1.fqn", {"font-size": "24px"}) | ||
|
||
assert-css: ("h2#top-doc-prose-title", {"font-size": "20.8px"}) | ||
assert-css: ("h3#top-doc-prose-sub-heading", {"font-size": "18.4px"}) |
This file contains 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
This file contains 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