summaryrefslogtreecommitdiff
path: root/frontend/gamma/tests/SimpleTest/test.css
authorGiulio Cesare Solaroli <giulio.cesare@clipperz.com>2011-10-02 23:56:18 (UTC)
committer Giulio Cesare Solaroli <giulio.cesare@clipperz.com>2011-10-02 23:56:18 (UTC)
commitef68436ac04da078ffdcacd7e1f785473a303d45 (patch) (unidiff)
treec403752d66a2c4775f00affd4fa8431b29c5b68c /frontend/gamma/tests/SimpleTest/test.css
parent597ecfbc0249d83e1b856cbd558340c01237a360 (diff)
downloadclipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.zip
clipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.tar.gz
clipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.tar.bz2
First version of the newly restructured repository
Diffstat (limited to 'frontend/gamma/tests/SimpleTest/test.css') (more/less context) (show whitespace changes)
-rw-r--r--frontend/gamma/tests/SimpleTest/test.css28
1 files changed, 28 insertions, 0 deletions
diff --git a/frontend/gamma/tests/SimpleTest/test.css b/frontend/gamma/tests/SimpleTest/test.css
new file mode 100644
index 0000000..38a4014
--- a/dev/null
+++ b/frontend/gamma/tests/SimpleTest/test.css
@@ -0,0 +1,28 @@
1.test_ok {
2 color: green;
3 display: none;
4}
5.test_not_ok {
6 color: red;
7 display: block;
8}
9
10.test_ok, .test_not_ok {
11 border-bottom-width: 2px;
12 border-bottom-style: solid;
13 border-bottom-color: black;
14}
15
16.all_pass {
17 background-color: lime;
18}
19
20.some_fail {
21 background-color: red;
22}
23
24.tests_report {
25 border-width: 2px;
26 border-style: solid;
27 width: 20em;
28}