From 9a13943d8c20f79a8be744ccfda7669b150e156a Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 14 Oct 2011 11:23:43 -0400 Subject: [PATCH] Add a css parser test for transparent --- tests/css/parser/declarations-valid-26.css | 1 + tests/css/parser/declarations-valid-26.ref.css | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 tests/css/parser/declarations-valid-26.css create mode 100644 tests/css/parser/declarations-valid-26.ref.css diff --git a/tests/css/parser/declarations-valid-26.css b/tests/css/parser/declarations-valid-26.css new file mode 100644 index 0000000000..e49c23a35b --- /dev/null +++ b/tests/css/parser/declarations-valid-26.css @@ -0,0 +1 @@ +* { color: red; background-color: transparent } diff --git a/tests/css/parser/declarations-valid-26.ref.css b/tests/css/parser/declarations-valid-26.ref.css new file mode 100644 index 0000000000..4baf392ba4 --- /dev/null +++ b/tests/css/parser/declarations-valid-26.ref.css @@ -0,0 +1,4 @@ +* { + background-color: rgba(0,0,0,0); + color: rgb(255,0,0); +}