summaryrefslogtreecommitdiff
path: root/test/it_html.t
diff options
context:
space:
mode:
Diffstat (limited to 'test/it_html.t')
-rwxr-xr-xtest/it_html.t12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/it_html.t b/test/it_html.t
index 11e05dd..380a779 100755
--- a/test/it_html.t
+++ b/test/it_html.t
@@ -289,6 +289,18 @@ is(
'TODO it_html::sanitize handle anchors with unquoted attribute value in img'
);
+is(
+ it_html::sanitize('<ul><li><ul><li class="removeme">foo</li><li>bar</li></ul></li></ul>'),
+ '<ul><li><ul><li>foo</li><li>bar</li></ul></li></ul>',
+ 'Nested unordered lists'
+);
+
+is(
+ it_html::sanitize('<p><b>one</b> one</p><ul><li><p><i>one-one</i></p><ul><li>one-one-one</li><li>one-one-two</li></ul></li><li><p><i>one-two</i></p><ul><li>one-two-one</li><li>one-two-two</li></ul></li></ul>'),
+ '<p><b>one</b> one</p><ul><li><p><i>one-one</i></p><ul><li>one-one-one</li><li>one-one-two</li></ul></li><li><p><i>one-two</i></p><ul><li>one-two-one</li><li>one-two-two</li></ul></li></ul>',
+ 'More nested tags'
+);
+
foreach (json_decode(it::file_get_contents(dirname($argv[0]) . '/U_tests.json'), true) as $test)
is(U(...$test['args']), $test['exp'], $test['name']);