make() public method

public make ( string $string ) : HTMLPurifier_AttrDef
$string string
return HTMLPurifier_AttrDef
コード例 #1
0
ファイル: PixelsTest.php プロジェクト: youprofit/casebox
 public function test_make()
 {
     $factory = new HTMLPurifier_AttrDef_HTML_Pixels();
     $this->def = $factory->make('30');
     $this->assertDef('25');
     $this->assertDef('35', '30');
 }