about summary refs log tree commit diff
path: root/src/test/rustdoc/const-generics/const-generics-docs.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-128/+0
2022-09-25rustdoc: update test cases now that code-header is used without in-bandMichael Howell-6/+6
2022-08-31Update rustdoc testsGuillaume Gomez-4/+4
2022-07-19tests: fix `rustdoc` testsArtur Sinila-2/+2
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-02-02Emit valid HTML from rustdocJacob Hoffman-Andrews-2/+2
Previously, tidy-html5 (`tidy`) would complain about a few things in our HTML. The main thing is that `<summary>` tags can't contain `<div>`s. That's easily fixed by changing out the `<div>`s for `<span>`s with `display: block`. However, there's also a rule that `<span>`s can't contain heading elements. `<span>` permits only "phrasing content" https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span, and `<h3>` (and friends) are "Flow content, heading content, palpable content". https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements We have a wrapping `<div>` that goes around each `<h3>`/`<h4>`, etc. We turn that into a `<section>` rather than a `<span>` because `<section>` permits "flow content". https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section After this change we get only three warnings from tidy, run on struct.String.html: line 6 column 10790 - Warning: trimming empty <span> line 1 column 1118 - Warning: <link> proprietary attribute "disabled" line 1 column 1193 - Warning: <link> proprietary attribute "disabled" The empty `<span>` is a known issue - there's a span in front of the search box to work around a strange Safari issue. The `<link>` attributes are the non-default stylesheets. We can probably refactor theme application to avoid using this proprietary "disabled" attribute.
2021-07-25Rustdoc accessibility: use real headers for doc itemsbors-6/+6
Part of #87059 Partially reverts #84703 Preview at: https://notriddle.com/notriddle-rustdoc-test/real-headers/std/index.html
2021-06-01Replace h3 and h4 containing invalid DOMGuillaume Gomez-2/+2
2020-12-26update testsBastian Kauschke-1/+0
2020-11-12Handle and test wildcard argumentsJoshua Nelson-2/+1
2020-11-11add rustdoc testBastian Kauschke-0/+130