diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2023-07-31 00:48:17 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2023-07-31 00:48:17 +0200 |
| commit | c77329cb04c2293e9f1773b95e7d0cef009a736d (patch) | |
| tree | d0d8b5e88647044beb42083758db0130c18cd5b4 | |
| parent | 4c9ac1e93b43389890d0d77eeb479b79da62da25 (diff) | |
| download | rust-c77329cb04c2293e9f1773b95e7d0cef009a736d.tar.gz rust-c77329cb04c2293e9f1773b95e7d0cef009a736d.zip | |
Migrate GUI colors test to original CSS color format
| -rw-r--r-- | tests/rustdoc-gui/rust-logo.goml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/rustdoc-gui/rust-logo.goml b/tests/rustdoc-gui/rust-logo.goml index 640ed152b0d..cd453aea276 100644 --- a/tests/rustdoc-gui/rust-logo.goml +++ b/tests/rustdoc-gui/rust-logo.goml @@ -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: ( |
