1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-10-15 06:04:23 +02:00
Files
php-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;');
}
}
?>