mirror of https://github.com/rust-lang/rust.git
9 lines
451 B
Plaintext
9 lines
451 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": 1114, "clientWidth": 800})
|
|
|
|
// Both properties should be equal (ie, no scroll on the code block).
|
|
assert-property: (".example-wrap .rust", {"scrollWidth": 1000, "clientWidth": 1000})
|