Example #1
0
 public function testParseRgbaString()
 {
     $c = new Color();
     $c->parse('rgba(181, 55, 23, 1)');
     $this->validateColor($c, 181, 55, 23, 0);
 }