summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorUrban Müller2024-05-28 17:49:09 +0200
committerUrban Müller2024-05-28 17:49:09 +0200
commit25a946b8c2bf6638b7adfe2afa387fa26cb97e71 (patch)
treeaa693ef50ac2531fc5399614e289c9fd8609d2af /test
parent937d04e90f85e332186c6c16fc6b06fa0ca400a7 (diff)
downloaditools-25a946b8c2bf6638b7adfe2afa387fa26cb97e71.tar.gz
itools-25a946b8c2bf6638b7adfe2afa387fa26cb97e71.tar.bz2
itools-25a946b8c2bf6638b7adfe2afa387fa26cb97e71.zip
Revert "Improve handling of nested tags in it_html::sanitize": getting "Exceeded pcre.backtrack_limit of 1000000 bytes"
This reverts commit b484fab88a9229f7c87ea053564d0d8d3d2a565d.
Diffstat (limited to 'test')
-rwxr-xr-xtest/it_html.t12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/it_html.t b/test/it_html.t
index 380a779..11e05dd 100755
--- a/test/it_html.t
+++ b/test/it_html.t
@@ -289,18 +289,6 @@ 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']);