- From: <bugzilla@wiggum.w3.org>
- Date: Mon, 22 Mar 2010 19:28:42 +0000
- To: www-validator-cvs@w3.org
http://www.w3.org/Bugs/Public/show_bug.cgi?id=9299
Summary: CSS3 validator does not support HSL, HSLA or RGBA values
in text-shadow
Product: CSSValidator
Version: CSS Validator
Platform: PC
OS/Version: Windows NT
Status: NEW
Severity: normal
Priority: P2
Component: CSS 3
AssignedTo: dave.null@w3.org
ReportedBy: me@leaverou.me
QAContact: www-validator-cvs@w3.org
The CSS3 validator does not support HSL, HSLA or RGBA values in text-shadow.
Reduction: Try validating this CSS:
* {
text-shadow: 1px 1px 1px rgba(0, 0, 0, .6);
text-shadow: 1px 1px 1px hsla(180, 50, 0, .6);
text-shadow: 1px 1px 1px hsl(180, 0, 0);
}
you will get 3 errors:
2 * Value Error : text-shadow Too many values or values are not
recognized : 1px 1px 1px rgba(0,0,0,0.6) 1px 1px 1px rgba(0,0,0,0.6)
3 * Value Error : text-shadow Too many values or values are not
recognized : 1px 1px 1px hsla(180,50,0,0.6) 1px 1px 1px hsla(180,50,0,0.6)
4 * Value Error : text-shadow Too many values or values are not
recognized : 1px 1px 1px hsl(180,0,0) 1px 1px 1px hsl(180,0,0)
--
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
Received on Monday, 22 March 2010 19:28:43 UTC