config->set('HTML.DefinitionID', 'HTMLPurifier_HTMLModule_SafeObjectTest'); $this->config->set('HTML.SafeObject', true); } function testMinimal() { $this->assertResult( '', '' ); } function testYouTube() { // embed is purposely removed $this->assertResult( '', '' ); } function testMalicious() { $this->assertResult( '', '' ); } function testFull() { $this->assertResult( '' ); } function testFullScreen() { $this->config->set('HTML.FlashAllowFullScreen', true); $this->assertResult( '' ); } } // vim: et sw=4 sts=4