Add GUI regression test for position of warning block
This commit is contained in:
parent
279b11c4b5
commit
98b71bf345
2 changed files with 16 additions and 0 deletions
|
@ -85,6 +85,9 @@ impl AsRef<str> for Foo {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <div id="doc-warning-0" class="warning">I have warnings!</div>
|
||||||
|
pub struct WarningStruct;
|
||||||
|
|
||||||
/// Just a normal enum.
|
/// Just a normal enum.
|
||||||
///
|
///
|
||||||
/// # title!
|
/// # title!
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
go-to: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html"
|
go-to: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html"
|
||||||
show-text: true
|
show-text: true
|
||||||
|
|
||||||
|
store-value: (default_y_pos, 5)
|
||||||
define-function: (
|
define-function: (
|
||||||
"check-warning",
|
"check-warning",
|
||||||
(theme, color, border_color),
|
(theme, color, border_color),
|
||||||
|
@ -16,12 +17,18 @@ define-function: (
|
||||||
"border-left": "2px solid " + |border_color|,
|
"border-left": "2px solid " + |border_color|,
|
||||||
"background-color": "transparent",
|
"background-color": "transparent",
|
||||||
})
|
})
|
||||||
|
store-position: ("#doc-warning-1", {"y": warn_div_y})
|
||||||
|
store-position: ("#doc-warning-1::before", {"y": warn_y})
|
||||||
|
assert: |warn_y| == |warn_div_y| + |default_y_pos|
|
||||||
assert-css: ("#doc-warning-2", {
|
assert-css: ("#doc-warning-2", {
|
||||||
"margin-bottom": "0px",
|
"margin-bottom": "0px",
|
||||||
"color": |color|,
|
"color": |color|,
|
||||||
"border-left": "2px solid " + |border_color|,
|
"border-left": "2px solid " + |border_color|,
|
||||||
"background-color": "transparent",
|
"background-color": "transparent",
|
||||||
})
|
})
|
||||||
|
store-position: ("#doc-warning-2", {"y": warn_div_y})
|
||||||
|
store-position: ("#doc-warning-2::before", {"y": warn_y})
|
||||||
|
assert: |warn_y| == |warn_div_y| + |default_y_pos|
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -40,3 +47,9 @@ call-function: ("check-warning", {
|
||||||
"color": "black",
|
"color": "black",
|
||||||
"border_color": "#ff8e00",
|
"border_color": "#ff8e00",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// We ensure that the warning element in the top doc is not overlaying the "[-]" button.
|
||||||
|
go-to: "file://" + |DOC_PATH| + "/test_docs/struct.WarningStruct.html"
|
||||||
|
store-position: ("#doc-warning-0", {"y": warn_div_y})
|
||||||
|
store-position: ("#doc-warning-0::before", {"y": warn_y})
|
||||||
|
assert: |warn_y| == |warn_div_y| + |default_y_pos| + 15
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue