Add a TextView reftests checking border-windows

TextView border windows are internal windows used to draw on the gutter
of the textview (e.g. line numbers). The test uses the gmodule hook to
programmatically draw on the border-windows at each side of the textview
and compares the result with 3x3 grid of labels.
This commit is contained in:
Paolo Borelli
2014-06-15 18:11:15 +02:00
parent 2c5be3b231
commit 2eeff1eed6
5 changed files with 194 additions and 0 deletions

View File

@ -0,0 +1,21 @@
@import "reset-to-defaults.css";
.top,
#label_n {
background-color: blue;
}
.left,
#label_w {
background-color: green;
}
.right,
#label_e {
background-color: yellow;
}
.bottom,
#label_s {
background-color: red;
}