summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/data/css/color.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/data/css/color.css b/test/data/css/color.css
new file mode 100644
index 0000000..d6f572f
--- /dev/null
+++ b/test/data/css/color.css
@@ -0,0 +1,19 @@
+h1 {
+ color: red;
+ color: #12f;
+ color: #12345f;
+ color: rgb(0, 0, 0);
+ color: rgb(0%, 0%, 0%);
+
+ color: rgb(300, 0, 0);
+ color: rgb(-10, 0, 0);
+ color: rgb(150%, 0%, 0%);
+ color: rgb(-10%, 0%, 0%);
+
+ color: 123;
+ color: 123456;
+ color: 12f;
+ color: 12345f;
+ color: 12f456;
+ color: f00000;
+}