| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -17/+0 | |
| 2022-09-25 | rustdoc: update test cases now that code-header is used without in-band | Michael Howell | -1/+1 | |
| 2022-07-19 | tests: fix `rustdoc` tests | Artur Sinila | -1/+1 | |
| 2022-02-02 | Emit valid HTML from rustdoc | Jacob Hoffman-Andrews | -1/+1 | |
| 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-08-30 | `feature(const_generics)` -> `feature(const_param_types)` | lcnr | -1/+0 | |
| 2021-07-25 | Rustdoc accessibility: use real headers for doc items | bors | -1/+1 | |
| Part of #87059 Partially reverts #84703 Preview at: https://notriddle.com/notriddle-rustdoc-test/real-headers/std/index.html | ||||
| 2021-06-01 | Replace h3 and h4 containing invalid DOM | Guillaume Gomez | -1/+1 | |
| 2021-04-19 | rustdoc: use details tag for trait implementors | Jacob Hoffman-Andrews | -1/+1 | |
| This switches from JS-generated toggles to using the HTML <details> tag for expanding and collapsing entries in the "Implementors" section. | ||||
| 2021-04-03 | Remove redundant `ignore-tidy-linelength` annotations | Simon Jakobi | -2/+0 | |
| This is step 2 towards fixing #77548. In the codegen and codegen-units test suites, the `//` comment markers were kept in order not to affect any source locations. This is because these tests cannot be automatically `--bless`ed. | ||||
| 2020-06-26 | Show the values and computation that would overflow a const evaluation or ↵ | Oliver Scherer | -2/+1 | |
| propagation | ||||
| 2020-05-05 | Update tests | Guillaume Gomez | -1/+1 | |
| 2020-01-14 | Code review changes and fix rustdoc test. | Ben Lewis | -1/+1 | |
| 2019-05-28 | Add a regression test for unevaluated const in rustdoc | varkor | -0/+21 | |
