mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
449 B
Plaintext
9 lines
449 B
Plaintext
// Checks that the scrollbar is visible on the page rather than the code block.
|
|
go-to: "file://" + |DOC_PATH| + "/src/test_docs/lib.rs.html"
|
|
set-window-size: (800, 1000)
|
|
// "scrollWidth" should be superior than "clientWidth".
|
|
assert-property: ("body", {"scrollWidth": 1047, "clientWidth": 800})
|
|
|
|
// Both properties should be equal (ie, no scroll on the code block).
|
|
assert-property: (".example-wrap .rust", {"scrollWidth": 933, "clientWidth": 933})
|