]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-gui/search-result-display.goml
Auto merge of #98208 - ivanloz:master, r=nagisa
[rust.git] / src / test / rustdoc-gui / search-result-display.goml
1 // Checks that the search results have the expected width.
2 goto: file://|DOC_PATH|/test_docs/index.html
3 size: (900, 1000)
4 write: (".search-input", "test")
5 // To be SURE that the search will be run.
6 press-key: 'Enter'
7 wait-for: "#search-settings"
8 // The width is returned by "getComputedStyle" which returns the exact number instead of the
9 // CSS rule which is "50%"...
10 assert-css: (".search-results div.desc", {"width": "295px"})
11 size: (600, 100)
12 // As counter-intuitive as it may seem, in this width, the width is "100%", which is why
13 // when computed it's larger.
14 assert-css: (".search-results div.desc", {"width": "570px"})
15
16 // Check that the crate filter `<select>` is correctly handled when it goes to next line.
17 // To do so we need to update the length of one of its `<option>`.
18 size: (900, 900)
19
20 // First we check the current width and position.
21 assert-css: ("#crate-search", {"width": "218px"})
22 compare-elements-position-near: (
23     "#crate-search",
24     "#search-settings .search-results-title",
25     {"y": 5},
26 )
27
28 // Then we update the text of one of the `<option>`.
29 text: (
30     "#crate-search option",
31     "sdjfaksdjfaksjdbfkadsbfkjsadbfkdsbkfbsadkjfbkdsabfkadsfkjdsafa",
32 )
33
34 // Then we compare again.
35 assert-css: ("#crate-search", {"width": "640px"})
36 compare-elements-position-near-false: (
37     "#crate-search",
38     "#search-settings .search-results-title",
39     {"y": 5},
40 )
41 // And we check that the `<select>` isn't bigger than its container.
42 assert-css: ("#search", {"width": "640px"})