Skip to content

Commit ec372a1

Browse files
authored
Rollup merge of rust-lang#111844 - GuillaumeGomez:migrate-gui-test-color-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`
2 parents d935d0d + 194960b commit ec372a1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.16.3
1+
0.16.4

tests/rustdoc-gui/scrape-examples-color.goml

+3-3
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,16 @@ define-function: (
8181

8282
call-function: ("check-background", {
8383
"theme": "ayu",
84-
"background_color_start": "rgb(15, 20, 25)",
84+
"background_color_start": "rgba(15, 20, 25, 1)",
8585
"background_color_end": "rgba(15, 20, 25, 0)",
8686
})
8787
call-function: ("check-background", {
8888
"theme": "dark",
89-
"background_color_start": "rgb(53, 53, 53)",
89+
"background_color_start": "rgba(53, 53, 53, 1)",
9090
"background_color_end": "rgba(53, 53, 53, 0)",
9191
})
9292
call-function: ("check-background", {
9393
"theme": "light",
94-
"background_color_start": "rgb(255, 255, 255)",
94+
"background_color_start": "rgba(255, 255, 255, 1)",
9595
"background_color_end": "rgba(255, 255, 255, 0)",
9696
})

0 commit comments

Comments
 (0)