granite-rust/src/test/rustdoc-gui/search-result-display.goml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
565 B
Text
Raw Normal View History

2022-01-21 20:41:47 +01:00
// Checks that the search results have the expected width.
goto: file://|DOC_PATH|/test_docs/index.html
size: (900, 1000)
write: (".search-input", "test")
2022-03-30 14:30:46 +02:00
wait-for: "#search-settings"
// The width is returned by "getComputedStyle" which returns the exact number instead of the
// CSS rule which is "50%"...
assert-css: (".search-results div.desc", {"width": "295px"})
size: (600, 100)
// As counter-intuitive as it may seem, in this width, the width is "100%", which is why
// when computed it's larger.
2021-06-19 12:56:55 +02:00
assert-css: (".search-results div.desc", {"width": "570px"})