Skip to content

Commit

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

Migrate GUI colors test to original CSS color format

Follow-up of rust-lang#111459.

The `browser-ui-test` update is a fix when converting the alpha value to hex format. More information [here](GuillaumeGomez/browser-UI-test#511).

r? `@notriddle`
  • Loading branch information
Noratrieb committed May 30, 2023
2 parents 6d51c1c + 17e3d1c commit 8c1dda1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.4
0.16.5
8 changes: 4 additions & 4 deletions tests/rustdoc-gui/target.goml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ call-function: ("check-style", {
})
call-function: ("check-style", {
"theme": "dark",
"background": "rgb(73, 74, 61)",
"border": "rgb(187, 116, 16)",
"background": "#494a3d",
"border": "#bb7410",
})
call-function: ("check-style", {
"theme": "light",
"background": "rgb(253, 255, 211)",
"border": "rgb(173, 124, 55)",
"background": "#fdffd3",
"border": "#ad7c37",
})

0 comments on commit 8c1dda1

Please sign in to comment.