[gtk+] Add parser tests for min-width and min-height
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Add parser tests for min-width and min-height
- Date: Wed, 23 Dec 2015 03:35:43 +0000 (UTC)
commit 2b6ab1b8bd0739d21ac60be4bf919e1c354f3510
Author: Matthias Clasen <mclasen redhat com>
Date: Mon Dec 21 23:23:05 2015 -0500
Add parser tests for min-width and min-height
testsuite/css/parser/min-height.css | 19 +++++++++++++++++++
testsuite/css/parser/min-height.ref.css | 19 +++++++++++++++++++
testsuite/css/parser/min-width.css | 19 +++++++++++++++++++
testsuite/css/parser/min-width.ref.css | 19 +++++++++++++++++++
4 files changed, 76 insertions(+), 0 deletions(-)
---
diff --git a/testsuite/css/parser/min-height.css b/testsuite/css/parser/min-height.css
new file mode 100644
index 0000000..66769fe
--- /dev/null
+++ b/testsuite/css/parser/min-height.css
@@ -0,0 +1,19 @@
+a {
+ min-height: initial;
+}
+
+b {
+ min-height: inherit;
+}
+
+c {
+ min-height: unset;
+}
+
+d {
+ min-height: 0px;
+}
+
+e {
+ min-height: 2em;
+}
diff --git a/testsuite/css/parser/min-height.ref.css b/testsuite/css/parser/min-height.ref.css
new file mode 100644
index 0000000..13657ed
--- /dev/null
+++ b/testsuite/css/parser/min-height.ref.css
@@ -0,0 +1,19 @@
+a {
+ min-height: initial;
+}
+
+b {
+ min-height: inherit;
+}
+
+c {
+ min-height: unset;
+}
+
+d {
+ min-height: 0;
+}
+
+e {
+ min-height: 2em;
+}
diff --git a/testsuite/css/parser/min-width.css b/testsuite/css/parser/min-width.css
new file mode 100644
index 0000000..9f262ab
--- /dev/null
+++ b/testsuite/css/parser/min-width.css
@@ -0,0 +1,19 @@
+a {
+ min-width: initial;
+}
+
+b {
+ min-width: inherit;
+}
+
+c {
+ min-width: unset;
+}
+
+d {
+ min-width: 0px;
+}
+
+e {
+ min-width: 2em;
+}
diff --git a/testsuite/css/parser/min-width.ref.css b/testsuite/css/parser/min-width.ref.css
new file mode 100644
index 0000000..62bec56
--- /dev/null
+++ b/testsuite/css/parser/min-width.ref.css
@@ -0,0 +1,19 @@
+a {
+ min-width: initial;
+}
+
+b {
+ min-width: inherit;
+}
+
+c {
+ min-width: unset;
+}
+
+d {
+ min-width: 0;
+}
+
+e {
+ min-width: 2em;
+}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]