Skip to content

Rollup of 2 pull requests #113027

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 25, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Migrate GUI colors test to original CSS color format
  • Loading branch information
GuillaumeGomez committed Jun 25, 2023
commit 0979bf74131ab757b0824d229f7f714d0b54259c
6 changes: 3 additions & 3 deletions tests/rustdoc-gui/docblock-code-block-line-number.goml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ define-function: (
)
call-function: ("check-colors", {
"theme": "ayu",
"color": "rgb(92, 103, 115)",
"color": "#5c6773",
})
call-function: ("check-colors", {
"theme": "dark",
"color": "rgb(59, 145, 226)",
"color": "#3b91e2",
})
call-function: ("check-colors", {
"theme": "light",
"color": "rgb(198, 126, 45)",
"color": "#c67e2d",
})

// The first code block has two lines so let's check its `<pre>` elements lists both of them.
Expand Down