mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
8256ca4376
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@496 48356398-32a2-884e-a903-53898d9a118a
31 lines
684 B
PHP
31 lines
684 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/AttrTransform/BdoDir.php';
|
|
|
|
class HTMLPurifier_AttrTransform_BdoDirTest extends HTMLPurifier_AttrTransformHarness
|
|
{
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
$this->obj = new HTMLPurifier_AttrTransform_BdoDir();
|
|
}
|
|
|
|
function test() {
|
|
|
|
$this->assertResult( array(), array('dir' => 'ltr') );
|
|
|
|
// leave existing dir alone
|
|
$this->assertResult( array('dir' => 'rtl') );
|
|
|
|
// use a different default
|
|
$this->assertResult(
|
|
array(),
|
|
array('dir' => 'rtl'),
|
|
array('Attr.DefaultTextDir' => 'rtl')
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|