Your IP : 216.73.217.79


Current Path : /var/www/cesa.co.za/fpdf/unittest/
Upload File :
Current File : /var/www/cesa.co.za/fpdf/unittest/test.link.php

<?php

class TestLink extends GenericTest {
  function testLinkNormal() {
    $tree = $this->runPipeline(file_get_contents('test.link.1.html'));

    $element =& $tree->get_element_by_id('div1');

    $color =& $element->getCSSProperty(CSS_COLOR);
    $this->assertEqual($color->r, 1);
    $this->assertEqual($color->g, 0);
    $this->assertEqual($color->b, 0);
  }

  function testLinkAutofix() {
    $tree = $this->runPipeline(file_get_contents('test.link.2.html'));

    $element =& $tree->get_element_by_id('div1');

    $color =& $element->getCSSProperty(CSS_COLOR);
    $this->assertEqual($color->r, 1);
    $this->assertEqual($color->g, 0);
    $this->assertEqual($color->b, 0);
  }
}


?>