2022-01-13 11:54:44 -06:00
|
|
|
// Test various properties of the mobile UI
|
2022-10-07 13:17:05 -05:00
|
|
|
goto: "file://" + |DOC_PATH| + "/staged_api/struct.Foo.html"
|
2022-01-13 11:54:44 -06:00
|
|
|
size: (400, 600)
|
|
|
|
|
2022-01-21 19:44:54 -06:00
|
|
|
font-size: 18
|
2022-03-09 13:47:16 -06:00
|
|
|
wait-for: 100 // wait a bit for the resize and the font-size change to be fully taken into account.
|
2022-01-21 19:44:54 -06:00
|
|
|
|
2022-01-13 11:54:44 -06:00
|
|
|
// The out-of-band info (source, stable version, collapse) should be below the
|
|
|
|
// h1 when the screen gets narrow enough.
|
|
|
|
assert-css: (".main-heading", {
|
|
|
|
"display": "flex",
|
|
|
|
"flex-direction": "column"
|
|
|
|
})
|
|
|
|
|
2022-10-18 13:14:01 -05:00
|
|
|
assert-property: (".mobile-topbar h2", {"offsetHeight": 36})
|
2022-01-21 19:44:54 -06:00
|
|
|
|
2022-01-13 11:54:44 -06:00
|
|
|
// Note: We can't use assert-text here because the 'Since' is set by CSS and
|
|
|
|
// is therefore not part of the DOM.
|
|
|
|
assert-css: (".content .out-of-band .since::before", { "content": "\"Since \"" })
|
|
|
|
|
|
|
|
size: (1000, 1000)
|
2022-03-09 13:47:16 -06:00
|
|
|
wait-for: 100 // wait a bit for the resize to be fully taken into account.
|
2022-01-13 11:54:44 -06:00
|
|
|
assert-css-false: (".content .out-of-band .since::before", { "content": "\"Since \"" })
|
2022-01-28 07:21:34 -06:00
|
|
|
|
|
|
|
// On the settings page, the theme buttons should not line-wrap. Instead, they should
|
|
|
|
// all be placed as a group on a line below the setting name "Theme."
|
2022-10-07 13:17:05 -05:00
|
|
|
goto: "file://" + |DOC_PATH| + "/settings.html"
|
2022-01-28 07:21:34 -06:00
|
|
|
size: (400, 600)
|
2022-03-09 13:47:16 -06:00
|
|
|
// Ignored for now https://github.com/rust-lang/rust/issues/93784.
|
2023-01-08 14:29:57 -06:00
|
|
|
// compare-elements-position-near-false: (
|
|
|
|
// "#preferred-light-theme .setting-name",
|
|
|
|
// "#preferred-light-theme .choice",
|
|
|
|
// {"y": 16},
|
|
|
|
// )
|