diff options
author | Benjamin Otte <otte@redhat.com> | 2013-05-15 15:28:06 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2013-05-15 15:37:17 +0200 |
commit | 172303f550e387b5e8b9c1f0ba5b8fe545aafded (patch) | |
tree | 0e80c3239f6ed3662236262526cf9257bc2d8448 /testsuite/reftests/background-position.css | |
parent | edde840513f525efded07cd4dab2bd2ec6cc1878 (diff) | |
download | gtk+-172303f550e387b5e8b9c1f0ba5b8fe545aafded.tar.gz |
build: Move tests/reftests to testsuite/reftests
Diffstat (limited to 'testsuite/reftests/background-position.css')
-rw-r--r-- | testsuite/reftests/background-position.css | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/testsuite/reftests/background-position.css b/testsuite/reftests/background-position.css new file mode 100644 index 0000000000..aff4d1544e --- /dev/null +++ b/testsuite/reftests/background-position.css @@ -0,0 +1,52 @@ +@import "reset-to-defaults.css"; + +.button { + background-image: url("green-20x20.png"); + background-repeat: no-repeat; + background-color: red; +} + +.button#ref { + background-image: none; + background-color: lime; +} + +GtkWindow#ref { + background-color: red; +} + +#a { + background-position: 50% 50%; +} + +#b { + background-position: 0% 50%; +} + +#c { + background-position: 0% 100%; +} + +#d { + background-position: bottom right; +} + +#e { + background-position: right top; +} + +#f { + background-position: right; +} + +#g { + background-position: 10px 10px; +} + +#h { + background-position: -10px 10px; +} + +#i { + background-position: 20px 20px; +} |