0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-20 03:05:18 +00:00
htmlpurifier/tests/HTMLPurifier/AttrDef/CSSTest.php

18 lines
296 B
PHP

<?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;');
}
}
?>