mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
fac747bdbd
With minor corrections. Signed-off-by: Marcus Bointon <marcus@synchromedia.co.uk> Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
35 lines
688 B
PHP
35 lines
688 B
PHP
<?php
|
|
|
|
class HTMLPurifier_AttrTransform_BdoDirTest extends HTMLPurifier_AttrTransformHarness
|
|
{
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->obj = new HTMLPurifier_AttrTransform_BdoDir();
|
|
}
|
|
|
|
public function testAddDefaultDir()
|
|
{
|
|
$this->assertResult( array(), array('dir' => 'ltr') );
|
|
}
|
|
|
|
public function testPreserveExistingDir()
|
|
{
|
|
$this->assertResult( array('dir' => 'rtl') );
|
|
}
|
|
|
|
public function testAlternateDefault()
|
|
{
|
|
$this->config->set('Attr.DefaultTextDir', 'rtl');
|
|
$this->assertResult(
|
|
array(),
|
|
array('dir' => 'rtl')
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|