예제 #1
0
 public function testToCSS3()
 {
     $d = new Dimension();
     $d->width = 100;
     $d->height = '100%';
     $this->assertEquals('width:100px; height:100%;', $d->toCSS());
 }