Rollup merge of #112133 - GuillaumeGomez:migrate-gui-test-color-10, r=notriddle

Migrate GUI colors test to original CSS color format

Follow-up of https://github.com/rust-lang/rust/pull/111459.

r? ```@notriddle```
This commit is contained in:
Matthias Krüger 2023-06-01 22:47:31 +02:00 committed by GitHub
commit 955bba36ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ set-local-storage: {
} }
// We reload the page so the local storage settings are being used. // We reload the page so the local storage settings are being used.
reload: reload:
assert-css: ("body", { "background-color": "rgb(53, 53, 53)" }) assert-css: ("body", { "background-color": "#353535" })
assert-local-storage: { "rustdoc-theme": "dark" } assert-local-storage: { "rustdoc-theme": "dark" }
// Now we go to the settings page. // Now we go to the settings page.
@ -15,7 +15,7 @@ go-to: "file://" + |DOC_PATH| + "/settings.html"
wait-for: "#settings" wait-for: "#settings"
// We change the theme to "light". // We change the theme to "light".
click: "#theme-light" click: "#theme-light"
wait-for-css: ("body", { "background-color": "rgb(255, 255, 255)" }) wait-for-css: ("body", { "background-color": "white" })
assert-local-storage: { "rustdoc-theme": "light" } assert-local-storage: { "rustdoc-theme": "light" }
// We go back in history. // We go back in history.
@ -23,5 +23,5 @@ history-go-back:
// Confirm that we're not on the settings page. // Confirm that we're not on the settings page.
assert-false: "#settings" assert-false: "#settings"
// Check that the current theme is still "light". // Check that the current theme is still "light".
assert-css: ("body", { "background-color": "rgb(255, 255, 255)" }) assert-css: ("body", { "background-color": "white" })
assert-local-storage: { "rustdoc-theme": "light" } assert-local-storage: { "rustdoc-theme": "light" }