mdbook/tests/gui/sidebar-nojs.goml
Eric Huss 9b5c57bf48 Add a basic book for GUI tests
This is the default book with a single chapter.
2025-10-15 07:00:35 -07:00

13 lines
441 B
Text

// This GUI test checks that the sidebar takes the whole height when it's inside
// an iframe (because of JS disabled).
// Regression test for <https://github.com/rust-lang/mdBook/issues/2528>.
// We disable javascript
javascript: false
go-to: |DOC_PATH| + "basic/index.html"
store-value: (height, 1028)
set-window-size: (1028, |height|)
within-iframe: (".sidebar-iframe-outer", block {
assert-size: (" body", {"height": |height|})
})