about summary refs log tree commit diff
path: root/tests/rustdoc-gui/sidebar-source-code-display.goml
AgeCommit message (Collapse)AuthorLines
2025-08-15rustdoc-search: search backend with partitioned suffix treeMichael Howell-1/+1
2024-10-23rustdoc: adjust spacing and typography in headerMichael Howell-1/+1
2024-09-29rustdoc-gui: fix test casesMichael Howell-1/+1
2024-09-10rustdoc: make the header show all three buttonsMichael Howell-1/+1
This tweaks it to use less space for the breadcrumbs.
2024-09-10rustdoc: redesign toolbar and disclosure widgetsMichael Howell-1/+1
This adds labels to the icons and moves them away from the search box. These changes are made together, because they work together, but are based on several complaints: * The [+/-] thing are a Reddit-ism. They don't look like buttons, but look like syntax <https://rust-lang.zulipchat.com/#narrow/stream/266220-t-rustdoc/topic/More.20visual.20difference.20for.20the.20.2B.2F-.20.20Icons>, <https://github.com/rust-lang/rust/issues/59851> (some of these are laundry lists with more suggestions, but they all mention [+/-] looking wrong) * The settings, help, and summary buttons are also too hard to recognize <https://lwn.net/Articles/987070/>, <https://github.com/rust-lang/rust/issues/90310>, <https://github.com/rust-lang/rust/issues/14475#issuecomment-274241997>, <https://internals.rust-lang.org/t/improve-rustdoc-design/12758> ("Not all functionality is self-explanatory, for example the [+] button in the top right corner, the theme picker or the settings button.") The toggle-all and toggle-individual buttons both need done at once, since we want them to look like they go together. This changes them from both being [+/-] to both being arrows. Settings and Help are also migrated, so that the whole group can benefit from being described using actual words. Additionally, the Help button is only shown on SERPs, not all the time. This is done for two major reasons: * Most of what's in there is search-related. The things that aren't are keyboard commands, and the search box tells you about that anyway. Pressing <kbd>?</kbd> will temporarily show the button and its popover. * I'm trading it off by showing the help button, even on mobile. It's useful since you can use the search engine suggestions there. * The three buttons were causing line wrapping on too many desktop layouts.
2024-06-27Update browser-ui-test version to `0.18.0`Guillaume Gomez-2/+3
2024-05-05rustdoc: dedup search form HTMLMichael Howell-1/+1
This change constructs the search form HTML using JavaScript, instead of plain HTML. It uses a custom element because - the [parser]'s insert algorithm runs the connected callback synchronously, so we won't get layout jank - it requires very little HTML, so it's a real win in size [parser]: https://html.spec.whatwg.org/multipage/parsing.html#create-an-element-for-the-token This shrinks the standard library by about 60MiB, by my test.
2024-04-05Use `include` command to reduce code duplicationGuillaume Gomez-2/+2
2024-04-01Update to new browser-ui-test versionGuillaume Gomez-2/+2
2023-12-18Stop using the trigram of heaven as a hamburger buttonMichael Howell-2/+2
It doesn't look quite right, because the lines are too far apart, and it's not going to be announced by screenreaders as a menu button, since that's not what the symbol means. This adds a real tooltip and uses a better drawing of the icon.
2023-12-18Add back the columnMichael Howell-5/+7
2023-12-17rustdoc: clean up source sidebar hide buttonMichael Howell-48/+13
This is a redesign of the feature, with parts pulled from https://github.com/rust-lang/rust/pull/119049 but with a button that looks more like a button and matches the one used on other sidebar pages.
2023-10-08rustdoc: fix rustdoc-gui tests for logo changesMichael Howell-2/+2
2023-08-03Migrate GUI colors test to original CSS color formatGuillaume Gomez-1/+1
2023-07-14rustdoc: use `src` consistently over `source` in codeMichael Howell-20/+20
The CSS uses an inconsistent mix of both. This commit switches it to always use `src`.
2023-05-11Convert some GUI tests color checks to use original formatGuillaume Gomez-13/+13
2023-04-12rustdoc: use CSS `overscroll-behavior` instead of JavaScriptMichael Howell-11/+1
Fixes the desktop scrolling weirdness mentioned in https://github.com/rust-lang/rust/pull/98775#issuecomment-1182575603 As described in the MDN page for this property: * The current Firefox ESR is 102, and the first Firefox version to support this feature is 59. * The current Chrome version 112, and the first version to support this is 63. * Edge is described as having a minor bug in `none` mode, but we use `contain` mode anyway, so it doesn't matter. * Safari 16, released September 2022, is the last browser to add this feature, and is also the oldest version we officially support.
2023-04-11Update rustdoc GUI tests to new browser-ui-test versionGuillaume Gomez-9/+9
2023-01-11Move /src/test to /testsAlbert Larsan-0/+215