0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-01-03 05:11:52 +00:00

Make list nesting test more sensitive.

Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
This commit is contained in:
Edward Z. Yang 2013-06-06 13:08:13 -07:00
parent 0680832d41
commit 75bd7abcc7

View File

@ -1,5 +1,7 @@
--INI--
Core.LexerImpl = DirectLex
--HTML-- --HTML--
<ul><li>Sublist 1</li><ul><li>Bullet</li></ul></ul> <ul><li>Sublist 1</li><ul><li>Bullet</li></ul><li>Sublist 2</li><ol><li>Billet</li></ol></ul>
--EXPECT-- --EXPECT--
<ul><li>Sublist 1<ul><li>Bullet</li></ul></li></ul> <ul><li>Sublist 1<ul><li>Bullet</li></ul></li><li>Sublist 2<ol><li>Billet</li></ol></li></ul>
--# vim: et sw=4 sts=4 --# vim: et sw=4 sts=4