From 243879bb340b08b9cc0eee8d988d8025980a390c Mon Sep 17 00:00:00 2001 From: David Flatz Date: Fri, 26 Apr 2024 18:19:42 +0200 Subject: Handle whitespace between attribute name and value; add some TODO tests to be more compliant to specification --- test/it_html.t | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'test') diff --git a/test/it_html.t b/test/it_html.t index e6477da..80753db 100755 --- a/test/it_html.t +++ b/test/it_html.t @@ -253,6 +253,24 @@ is( 'empty tags removal' ); +is( + it_html::sanitize('foo'), + 'foo', + 'it_html::sanitize handle anchors with spaces between attribute name and value' +); + +is( + it_html::sanitize("foo"), + 'foo', + 'TODO it_html::sanitize handle anchors with single quotes at attribute value' +); + +is( + it_html::sanitize("foo"), + 'foo', + 'TODO it_html::sanitize handle anchors with unquoted attribute value' +); + foreach (json_decode(it::file_get_contents(dirname($argv[0]) . '/U_tests.json'), true) as $test) is(U(...$test['args']), $test['exp'], $test['name']); -- cgit v1.2.3