| | |
| | | $this->assertPattern('#background="./program/blocked.gif"#', $html, "Replace external background image"); |
| | | $this->assertNoPattern('/ex3.jpg/', $html, "No references to external images"); |
| | | $this->assertNoPattern('/<meta [^>]+>/', $html, "No meta tags allowed"); |
| | | $this->assertNoPattern('/<style [^>]+>/', $html, "No style tags allowed"); |
| | | //$this->assertNoPattern('/<style [^>]+>/', $html, "No style tags allowed"); |
| | | $this->assertNoPattern('/<form [^>]+>/', $html, "No form tags allowed"); |
| | | $this->assertPattern('/Subscription form/', $html, "Include <form> contents"); |
| | | $this->assertPattern('/<!-- input not allowed -->/', $html, "No input elements allowed"); |
| | | $this->assertPattern('/<!-- link not allowed -->/', $html, "No external links allowed"); |
| | | $this->assertPattern('/<!-- input ignored -->/', $html, "No input elements allowed"); |
| | | $this->assertPattern('/<!-- link ignored -->/', $html, "No external links allowed"); |
| | | $this->assertPattern('/<a[^>]+ target="_blank">/', $html, "Set target to _blank"); |
| | | $this->assertTrue($GLOBALS['REMOTE_OBJECTS'], "Remote object detected"); |
| | | |