Example #1
0
 /**
  * @testdox getJSNodes() returns all nodes that normally contain JS
  */
 public function testGetJSNodes()
 {
     $template = new Template('<div style="color:red" onclick="alert(1)">foo</div>');
     $nodes = $template->getJSNodes();
     $this->assertSame(1, count($nodes));
     $this->assertSame('alert(1)', $nodes[0]->value);
 }