From: Laurent Goderre Date: Tue, 30 Sep 2014 16:07:03 +0000 (-0400) Subject: Added a more robust test for nested quotes in attributes X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=7a10379f133a582f684270dac65f5b07d59558a9;p=html-minifier.git Added a more robust test for nested quotes in attributes --- diff --git a/tests/minifier.js b/tests/minifier.js index ea6b0d7..4940088 100644 --- a/tests/minifier.js +++ b/tests/minifier.js @@ -878,8 +878,8 @@ }); test('nested quotes', function() { - input = '

'; - output = '

'; + input = '
'; + output = '
'; equal(minify(input), output); });