]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-gui/search-result-display.goml
Rollup merge of #91834 - GuillaumeGomez:improve-gui-test-readability, r=jsha
[rust.git] / src / test / rustdoc-gui / search-result-display.goml
1 goto: file://|DOC_PATH|/test_docs/index.html
2 size: (900, 1000)
3 write: (".search-input", "test")
4 // Waiting for the search results to appear...
5 wait-for: "#titles"
6 // The width is returned by "getComputedStyle" which returns the exact number instead of the
7 // CSS rule which is "50%"...
8 assert-css: (".search-results div.desc", {"width": "320px"})
9 size: (600, 100)
10 // As counter-intuitive as it may seem, in this width, the width is "100%", which is why
11 // when computed it's larger.
12 assert-css: (".search-results div.desc", {"width": "570px"})