Skip to content

Commit

Permalink
Auto merge of rust-lang#115700 - GuillaumeGomez:migrate-gui-test-colo…
Browse files Browse the repository at this point in the history
…r-39, r=notriddle

Migrate GUI colors test to original CSS color format

Follow-up of rust-lang#111459.

r? `@notriddle`
  • Loading branch information
bors committed Sep 9, 2023
2 parents bfcc360 + a0aa59c commit 58b4ebc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/rustdoc-gui/help-page.goml
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,21 @@ define-function: (

call-function: ("check-colors", {
"theme": "ayu",
"color": "rgb(197, 197, 197)",
"background": "rgb(49, 69, 89)",
"box_shadow": "rgb(92, 103, 115)",
"color": "#c5c5c5",
"background": "#314559",
"box_shadow": "#5c6773",
})
call-function: ("check-colors", {
"theme": "dark",
"color": "rgb(0, 0, 0)",
"background": "rgb(250, 251, 252)",
"box_shadow": "rgb(198, 203, 209)",
"color": "#000",
"background": "#fafbfc",
"box_shadow": "#c6cbd1",
})
call-function: ("check-colors", {
"theme": "light",
"color": "rgb(0, 0, 0)",
"background": "rgb(250, 251, 252)",
"box_shadow": "rgb(198, 203, 209)",
"color": "#000",
"background": "#fafbfc",
"box_shadow": "#c6cbd1",
})

// This test ensures that opening the help popover without switching pages works.
Expand Down

0 comments on commit 58b4ebc

Please sign in to comment.