Skip to content

Commit

Permalink
Rollup merge of rust-lang#111844 - GuillaumeGomez:migrate-gui-test-co…
Browse files Browse the repository at this point in the history
…lor-4, r=notriddle

Migrate GUI colors test to original CSS color format

I updated the `browser-ui-test` version because I fixed GuillaumeGomez/browser-UI-test#507. If inside a function, the colors were not considered, preventing the second commit of this PR.

Follow-up of rust-lang#111459.

r? `@notriddle`
  • Loading branch information
Dylan-DPC committed May 22, 2023
2 parents d935d0d + 194960b commit ec372a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.3
0.16.4
6 changes: 3 additions & 3 deletions tests/rustdoc-gui/scrape-examples-color.goml
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,16 @@ define-function: (

call-function: ("check-background", {
"theme": "ayu",
"background_color_start": "rgb(15, 20, 25)",
"background_color_start": "rgba(15, 20, 25, 1)",
"background_color_end": "rgba(15, 20, 25, 0)",
})
call-function: ("check-background", {
"theme": "dark",
"background_color_start": "rgb(53, 53, 53)",
"background_color_start": "rgba(53, 53, 53, 1)",
"background_color_end": "rgba(53, 53, 53, 0)",
})
call-function: ("check-background", {
"theme": "light",
"background_color_start": "rgb(255, 255, 255)",
"background_color_start": "rgba(255, 255, 255, 1)",
"background_color_end": "rgba(255, 255, 255, 0)",
})

0 comments on commit ec372a1

Please sign in to comment.