public StyleValue compile(Object objValue)
{
String value = stringify(objValue);
try
{
PixelsValue attribute = attemptPercentageAttribute(value);
if(attribute == null)
attribute = attemptStaticAttribute(value);
if(attribute != null)
return attribute;