Skip to content

Commit

Permalink
Rollup merge of #114269 - GuillaumeGomez:migrate-gui-test-color-24, r…
Browse files Browse the repository at this point in the history
…=notriddle

Migrate GUI colors test to original CSS color format

Follow-up of #111459.

r? `@notriddle`
  • Loading branch information
matthiaskrgr authored Jul 31, 2023
2 parents 692d764 + c77329c commit 81bb311
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/rustdoc-gui/rust-logo.goml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,20 @@ call-function: (
"check-logo",
{
"theme": "ayu",
"filter": "drop-shadow(rgb(255, 255, 255) 1px 0px 0px) " +
"drop-shadow(rgb(255, 255, 255) 0px 1px 0px) " +
"drop-shadow(rgb(255, 255, 255) -1px 0px 0px) " +
"drop-shadow(rgb(255, 255, 255) 0px -1px 0px)",
"filter": "drop-shadow(#fff 1px 0px 0px) " +
"drop-shadow(#fff 0px 1px 0px) " +
"drop-shadow(#fff -1px 0px 0px) " +
"drop-shadow(#fff 0px -1px 0px)",
},
)
call-function: (
"check-logo",
{
"theme": "dark",
"filter": "drop-shadow(rgb(255, 255, 255) 1px 0px 0px) " +
"drop-shadow(rgb(255, 255, 255) 0px 1px 0px) " +
"drop-shadow(rgb(255, 255, 255) -1px 0px 0px) " +
"drop-shadow(rgb(255, 255, 255) 0px -1px 0px)",
"filter": "drop-shadow(#fff 1px 0px 0px) " +
"drop-shadow(#fff 0px 1px 0px) " +
"drop-shadow(#fff -1px 0px 0px) " +
"drop-shadow(#fff 0px -1px 0px)",
},
)
call-function: (
Expand Down

0 comments on commit 81bb311

Please sign in to comment.