<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/rustdoc/extern-default-method.rs, branch try</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=try</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=try'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2023-01-11T09:32:08+00:00</updated>
<entry>
<title>Move /src/test to /tests</title>
<updated>2023-01-11T09:32:08+00:00</updated>
<author>
<name>Albert Larsan</name>
<email>74931857+albertlarsan68@users.noreply.github.com</email>
</author>
<published>2023-01-05T08:13:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cf2dff2b1e3fa55fa5415d524200070d0d7aacfe'/>
<id>urn:sha1:cf2dff2b1e3fa55fa5415d524200070d0d7aacfe</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rustdoc: remove `fnname` CSS class that's styled exactly like `fn`</title>
<updated>2022-11-28T17:51:46+00:00</updated>
<author>
<name>Michael Howell</name>
<email>michael@notriddle.com</email>
</author>
<published>2022-11-28T17:21:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=19e020029670ca422978c98209d1ed712a041c45'/>
<id>urn:sha1:19e020029670ca422978c98209d1ed712a041c45</id>
<content type='text'>
It's not obvious why this was ever a separate class name, since even
in c4219a478354b464079b1b7ab081e071e8e39765 when it was first added,
it was styled identically to regular `fn` links.
</content>
</entry>
<entry>
<title>rustdoc: discr. required+provided assoc consts+tys</title>
<updated>2022-04-12T13:38:39+00:00</updated>
<author>
<name>León Orell Valerian Liehr</name>
<email>liehr.exchange@gmx.net</email>
</author>
<published>2022-03-29T17:30:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8de453a8c6a26e43876def2d757bec40ed9b2767'/>
<id>urn:sha1:8de453a8c6a26e43876def2d757bec40ed9b2767</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Emit valid HTML from rustdoc</title>
<updated>2022-02-02T08:29:33+00:00</updated>
<author>
<name>Jacob Hoffman-Andrews</name>
<email>github@hoffman-andrews.com</email>
</author>
<published>2022-02-02T06:11:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=32f62607c3142dfc9eb56a0bd72dee298ca43358'/>
<id>urn:sha1:32f62607c3142dfc9eb56a0bd72dee298ca43358</id>
<content type='text'>
Previously, tidy-html5 (`tidy`) would complain about a few things in our
HTML. The main thing is that `&lt;summary&gt;` tags can't contain `&lt;div&gt;`s.
That's easily fixed by changing out the `&lt;div&gt;`s for `&lt;span&gt;`s with
`display: block`.

However, there's also a rule that `&lt;span&gt;`s can't contain heading
elements. `&lt;span&gt;` permits only "phrasing content"
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span, and
`&lt;h3&gt;` (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 `&lt;div&gt;` that goes around each `&lt;h3&gt;`/`&lt;h4&gt;`,
etc. We turn that into a `&lt;section&gt;` rather than a `&lt;span&gt;` because
`&lt;section&gt;` 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 &lt;span&gt;
line 1 column 1118 - Warning: &lt;link&gt; proprietary attribute "disabled"
line 1 column 1193 - Warning: &lt;link&gt; proprietary attribute "disabled"

The empty `&lt;span&gt;` is a known issue - there's a span in front of the
search box to work around a strange Safari issue.

The `&lt;link&gt;` attributes are the non-default stylesheets. We can probably
refactor theme application to avoid using this proprietary "disabled"
attribute.
</content>
</entry>
<entry>
<title>add assertions on existing tests with missing doc source</title>
<updated>2021-07-14T22:30:11+00:00</updated>
<author>
<name>François Mockers</name>
<email>mockersf@gmail.com</email>
</author>
<published>2021-07-14T22:30:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=450c28a45e387fb54bbc84cf88c3556f93bcf1b8'/>
<id>urn:sha1:450c28a45e387fb54bbc84cf88c3556f93bcf1b8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove licenses</title>
<updated>2018-12-26T04:08:33+00:00</updated>
<author>
<name>Mark Rousskov</name>
<email>mark.simulacrum@gmail.com</email>
</author>
<published>2018-12-25T15:56:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2a663555ddf36f6b041445894a8c175cd1bc718c'/>
<id>urn:sha1:2a663555ddf36f6b041445894a8c175cd1bc718c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace ignore-android with ignore-cross-compile in rustdoc tests</title>
<updated>2015-04-23T03:32:14+00:00</updated>
<author>
<name>Ryan Prichard</name>
<email>ryan.prichard@gmail.com</email>
</author>
<published>2015-04-22T22:22:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=89b6f397c58db87bfcc976cafb75324b2278c171'/>
<id>urn:sha1:89b6f397c58db87bfcc976cafb75324b2278c171</id>
<content type='text'>
The problem is that rustdoc searches for external crates using the host
triple, not the target triple. It's actually unclear to me whether this is
correct behavior or not, but it is necessary to get cross-compiled tests
working.
</content>
</entry>
<entry>
<title>Test fixes and review feedback</title>
<updated>2015-04-10T07:58:10+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-04-08T03:11:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=445faca8441aae34c91318b6ad9e2049885af8dc'/>
<id>urn:sha1:445faca8441aae34c91318b6ad9e2049885af8dc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>test: Move all run-make rustdoc tests to test/rustdoc</title>
<updated>2015-04-08T00:54:33+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-04-06T20:49:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d3647fe81543f0a04a0d6aee15f4bb8c08774295'/>
<id>urn:sha1:d3647fe81543f0a04a0d6aee15f4bb8c08774295</id>
<content type='text'>
</content>
</entry>
</feed>
