Exemplo n.º 1
0
 public function href($href = null)
 {
     if ($href !== null) {
         $this->node->setAttribute('href', $href);
     }
     return $this->node->getAttribute('href');
 }
Exemplo n.º 2
0
 public function testSetAttribute()
 {
     $node = new HtmlNode('a');
     $node->setAttribute('class', 'foo');
     $this->assertEquals('foo', $node->getAttribute('class'));
 }