0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-19 18:55:19 +00:00

Add case sensitivity test.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@167 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang 2006-08-05 19:52:30 +00:00
parent 2deb2fc285
commit a4ce51cca2

View File

@ -26,6 +26,9 @@ class HTMLPurifier_AttrDef_ClassTest extends HTMLPurifier_AttrDefHarness
// test whitespace leniency
$this->assertDef(" double\nvalid\r", 'double valid');
// test case sensitivity
$this->assertDef('VALID');
}
}