0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-03-22 22:17:01 +00:00

18 lines
296 B
PHP
Raw Normal View History

<?php
require_once 'HTMLPurifier/AttrDef/CSS.php';
class HTMLPurifier_AttrDef_CSSTest extends HTMLPurifier_AttrDefHarness
{
function test() {
$this->def = new HTMLPurifier_AttrDef_CSS();
$this->assertDef('text-align:right;');
}
}
?>