2021-10-20 00:48:53 -05:00
|
|
|
// This test checks that headers (a) have the correct heading level, (b) are the right size,
|
2021-10-22 01:09:11 -05:00
|
|
|
// and (c) have the correct underlining (or absence of underlining).
|
2021-10-22 15:45:10 -05:00
|
|
|
// The sizes may change as design changes, but try to make sure a lower header is never bigger than
|
2021-10-22 01:09:11 -05:00
|
|
|
// its parent headers. Also make sure lower headers don't have underlines when their parents lack
|
|
|
|
// an underline.
|
2021-10-22 15:45:10 -05:00
|
|
|
// 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
|
2022-02-05 07:05:05 -06:00
|
|
|
// 22px 1.375rem
|
|
|
|
// 20px 1.25rem
|
|
|
|
// 18px 1.125em
|
|
|
|
// 16px 1rem
|
|
|
|
// 14px 0.875rem
|
2021-10-22 15:45:10 -05:00
|
|
|
goto: file://|DOC_PATH|/test_docs/struct.HeavilyDocumentedStruct.html
|
|
|
|
|
|
|
|
assert-css: ("h1.fqn", {"font-size": "24px"})
|
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h2#top-doc-prose-title", {"font-size": "22px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h2#top-doc-prose-title", {"border-bottom-width": "1px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h3#top-doc-prose-sub-heading", {"font-size": "20px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h3#top-doc-prose-sub-heading", {"border-bottom-width": "1px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h4#top-doc-prose-sub-sub-heading", {"font-size": "18px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h4#top-doc-prose-sub-sub-heading", {"border-bottom-width": "1px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h2#fields", {"font-size": "22px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h2#fields", {"border-bottom-width": "1px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h3#title-for-field", {"font-size": "20px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h3#title-for-field", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
assert-css: ("h4#sub-heading-for-field", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h4#sub-heading-for-field", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h2#implementations", {"font-size": "22px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h2#implementations", {"border-bottom-width": "1px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("#impl > h3.code-header", {"font-size": "18px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("#impl > h3.code-header", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
assert-css: ("#method\.do_nothing > h4.code-header", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("#method\.do_nothing > h4.code-header", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
|
|
|
assert-css: ("h4#title-for-struct-impl-doc", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h4#title-for-struct-impl-doc", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
assert-css: ("h5#sub-heading-for-struct-impl-doc", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h5#sub-heading-for-struct-impl-doc", {"border-bottom-width": "0px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h6#sub-sub-heading-for-struct-impl-doc", {"font-size": "14px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h6#sub-sub-heading-for-struct-impl-doc", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
|
|
|
assert-css: ("h5#title-for-struct-impl-item-doc", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h5#title-for-struct-impl-item-doc", {"border-bottom-width": "0px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h6#sub-heading-for-struct-impl-item-doc", {"font-size": "14px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h6#sub-heading-for-struct-impl-item-doc", {"border-bottom-width": "0px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h6#sub-sub-heading-for-struct-impl-item-doc", {"font-size": "14px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
|
|
|
goto: file://|DOC_PATH|/test_docs/enum.HeavilyDocumentedEnum.html
|
|
|
|
|
|
|
|
assert-css: ("h1.fqn", {"font-size": "24px"})
|
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h2#top-doc-prose-title", {"font-size": "22px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h2#top-doc-prose-title", {"border-bottom-width": "1px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h3#top-doc-prose-sub-heading", {"font-size": "20px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h3#top-doc-prose-sub-heading", {"border-bottom-width": "1px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h4#top-doc-prose-sub-sub-heading", {"font-size": "18px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h4#top-doc-prose-sub-sub-heading", {"border-bottom-width": "1px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h2#variants", {"font-size": "22px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h2#variants", {"border-bottom-width": "1px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2021-10-20 00:48:53 -05:00
|
|
|
assert-css: ("h4#none-prose-title", {"font-size": "16px"})
|
|
|
|
assert-css: ("h4#none-prose-title", {"border-bottom-width": "0px"})
|
|
|
|
assert-css: ("h5#none-prose-sub-heading", {"font-size": "16px"})
|
|
|
|
assert-css: ("h5#none-prose-sub-heading", {"border-bottom-width": "0px"})
|
|
|
|
|
|
|
|
assert-css: ("h4#wrapped-prose-title", {"font-size": "16px"})
|
|
|
|
assert-css: ("h4#wrapped-prose-title", {"border-bottom-width": "0px"})
|
|
|
|
assert-css: ("h5#wrapped-prose-sub-heading", {"font-size": "16px"})
|
|
|
|
assert-css: ("h5#wrapped-prose-sub-heading", {"border-bottom-width": "0px"})
|
|
|
|
|
|
|
|
assert-css: ("h5#wrapped0-prose-title", {"font-size": "16px"})
|
|
|
|
assert-css: ("h5#wrapped0-prose-title", {"border-bottom-width": "0px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h6#wrapped0-prose-sub-heading", {"font-size": "14px"})
|
2021-10-20 00:48:53 -05:00
|
|
|
assert-css: ("h6#wrapped0-prose-sub-heading", {"border-bottom-width": "0px"})
|
|
|
|
|
|
|
|
assert-css: ("h5#structy-prose-title", {"font-size": "16px"})
|
|
|
|
assert-css: ("h5#structy-prose-title", {"border-bottom-width": "0px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h6#structy-prose-sub-heading", {"font-size": "14px"})
|
2021-10-20 00:48:53 -05:00
|
|
|
assert-css: ("h6#structy-prose-sub-heading", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h2#implementations", {"font-size": "22px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h2#implementations", {"border-bottom-width": "1px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("#impl > h3.code-header", {"font-size": "18px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("#impl > h3.code-header", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
assert-css: ("#method\.do_nothing > h4.code-header", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("#method\.do_nothing > h4.code-header", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
|
|
|
assert-css: ("h4#title-for-enum-impl-doc", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h4#title-for-enum-impl-doc", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
assert-css: ("h5#sub-heading-for-enum-impl-doc", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h5#sub-heading-for-enum-impl-doc", {"border-bottom-width": "0px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h6#sub-sub-heading-for-enum-impl-doc", {"font-size": "14px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h6#sub-sub-heading-for-enum-impl-doc", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
|
|
|
assert-css: ("h5#title-for-enum-impl-item-doc", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h5#title-for-enum-impl-item-doc", {"border-bottom-width": "0px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h6#sub-heading-for-enum-impl-item-doc", {"font-size": "14px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h6#sub-heading-for-enum-impl-item-doc", {"border-bottom-width": "0px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h6#sub-sub-heading-for-enum-impl-item-doc", {"font-size": "14px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h6#sub-sub-heading-for-enum-impl-item-doc", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2022-06-15 01:25:51 -05:00
|
|
|
assert-text: (".sidebar .mod h3", "Modules")
|
|
|
|
assert-css: (".sidebar .mod h3", {"border-bottom-width": "0px"}, ALL)
|
2021-11-04 10:27:02 -05:00
|
|
|
|
2021-10-22 15:45:10 -05:00
|
|
|
goto: file://|DOC_PATH|/test_docs/union.HeavilyDocumentedUnion.html
|
|
|
|
|
|
|
|
assert-css: ("h1.fqn", {"font-size": "24px"})
|
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h2#top-doc-prose-title", {"font-size": "22px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h2#top-doc-prose-title", {"border-bottom-width": "1px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h3#top-doc-prose-sub-heading", {"font-size": "20px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h3#top-doc-prose-sub-heading", {"border-bottom-width": "1px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h2#fields", {"font-size": "22px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h2#fields", {"border-bottom-width": "1px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h3#title-for-union-variant", {"font-size": "20px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h3#title-for-union-variant", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
assert-css: ("h4#sub-heading-for-union-variant", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h4#sub-heading-for-union-variant", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h2#implementations", {"font-size": "22px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h2#implementations", {"border-bottom-width": "1px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("#impl > h3.code-header", {"font-size": "18px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("#impl > h3.code-header", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
assert-css: ("h4#title-for-union-impl-doc", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h4#title-for-union-impl-doc", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
assert-css: ("h5#sub-heading-for-union-impl-doc", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h5#sub-heading-for-union-impl-doc", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
|
|
|
assert-css: ("h5#title-for-union-impl-item-doc", {"font-size": "16px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h5#title-for-union-impl-item-doc", {"border-bottom-width": "0px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h6#sub-heading-for-union-impl-item-doc", {"font-size": "14px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h6#sub-heading-for-union-impl-item-doc", {"border-bottom-width": "0px"})
|
2021-10-22 15:45:10 -05:00
|
|
|
|
|
|
|
goto: file://|DOC_PATH|/test_docs/macro.heavily_documented_macro.html
|
|
|
|
|
|
|
|
assert-css: ("h1.fqn", {"font-size": "24px"})
|
|
|
|
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h2#top-doc-prose-title", {"font-size": "22px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h2#top-doc-prose-title", {"border-bottom-width": "1px"})
|
2022-02-05 07:05:05 -06:00
|
|
|
assert-css: ("h3#top-doc-prose-sub-heading", {"font-size": "20px"})
|
2021-10-22 01:09:11 -05:00
|
|
|
assert-css: ("h3#top-doc-prose-sub-heading", {"border-bottom-width": "1px"})
|
2022-01-14 21:24:21 -06:00
|
|
|
|
|
|
|
goto: file://|DOC_PATH|/staged_api/struct.Foo.html
|
|
|
|
show-text: true
|
|
|
|
local-storage: {"rustdoc-theme": "light", "rustdoc-use-system-theme": "false"}
|
|
|
|
assert-css: (".since", {"color": "rgb(128, 128, 128)"})
|
|
|
|
|
|
|
|
local-storage: {"rustdoc-theme": "dark", "rustdoc-use-system-theme": "false"}
|
|
|
|
reload:
|
|
|
|
assert-css: (".since", {"color": "rgb(128, 128, 128)"})
|
|
|
|
|
|
|
|
local-storage: {"rustdoc-theme": "ayu", "rustdoc-use-system-theme": "false"}
|
|
|
|
reload:
|
|
|
|
assert-css: (".since", {"color": "rgb(128, 128, 128)"})
|