diff options
author | Matthias Clasen <mclasen@redhat.com> | 2015-12-28 23:26:50 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2015-12-29 07:47:58 -0500 |
commit | e867944a5a092b38a6249f6035f637374223d183 (patch) | |
tree | 7177303ca4f274dd19739bfcd919c45bf3a5baaf | |
parent | 20eaea2b2d8fa6db4a99313e4a8be472a1e5ecc4 (diff) | |
download | gtk+-wip/matthiasc/node-dump.tar.gz |
Add a css style test for currentColorwip/matthiasc/node-dump
-rw-r--r-- | testsuite/css/style/Makefile.am | 7 | ||||
-rw-r--r-- | testsuite/css/style/currentcolor.css | 9 | ||||
-rw-r--r-- | testsuite/css/style/currentcolor.nodes | 7 | ||||
-rw-r--r-- | testsuite/css/style/currentcolor.ui | 19 |
4 files changed, 39 insertions, 3 deletions
diff --git a/testsuite/css/style/Makefile.am b/testsuite/css/style/Makefile.am index d589a87681..7a2c875d62 100644 --- a/testsuite/css/style/Makefile.am +++ b/testsuite/css/style/Makefile.am @@ -25,9 +25,10 @@ test_css_style_SOURCES = \ test-css-style.c test_data = \ - inherit.ui inherit.css inherit.nodes \ - label.ui label.css label.nodes \ - nth-child.ui nth-child.css nth-child.nodes \ + currentcolor.ui currentcolor.css currentcolor.nodes \ + inherit.ui inherit.css inherit.nodes \ + label.ui label.css label.nodes \ + nth-child.ui nth-child.css nth-child.nodes \ $(NULL) EXTRA_DIST += $(test_in_files) $(test_data) diff --git a/testsuite/css/style/currentcolor.css b/testsuite/css/style/currentcolor.css new file mode 100644 index 0000000000..6c8bbdedd1 --- /dev/null +++ b/testsuite/css/style/currentcolor.css @@ -0,0 +1,9 @@ +@import "reset-to-defaults.css"; + +box { + color: red; +} + +label { + background-color: currentColor; +} diff --git a/testsuite/css/style/currentcolor.nodes b/testsuite/css/style/currentcolor.nodes new file mode 100644 index 0000000000..36737782cf --- /dev/null +++ b/testsuite/css/style/currentcolor.nodes @@ -0,0 +1,7 @@ +window visible=0 state=dir-ltr classes=background + decoration visible=1 state=dir-ltr + box visible=1 state=dir-ltr classes=horizontal + color: rgb(255,0,0) (currentcolor.css:4:12) + label visible=1 state=dir-ltr + color: rgb(255,0,0) (reset-to-defaults.css:2:12) + background-color: rgb(255,0,0) (currentcolor.css:8:32) diff --git a/testsuite/css/style/currentcolor.ui b/testsuite/css/style/currentcolor.ui new file mode 100644 index 0000000000..f1b397c08c --- /dev/null +++ b/testsuite/css/style/currentcolor.ui @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <!-- interface-requires gtk+ 3.0 --> + <object class="GtkWindow" id="window1"> + <property name="can_focus">False</property> + <property name="type">popup</property> + <child> + <object class="GtkBox"> + <property name="visible">True</property> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="label" translatable="yes">Hello World!</property> + </object> + </child> + </object> + </child> + </object> +</interface> |