diff --git a/js/test/generated/beautify-html-tests.js b/js/test/generated/beautify-html-tests.js index 3b57ae02..639aa21a 100644 --- a/js/test/generated/beautify-html-tests.js +++ b/js/test/generated/beautify-html-tests.js @@ -395,6 +395,16 @@ function run_html_tests(test_obj, Urlencoded, js_beautify, html_beautify, css_be ' target="_blank">\n' + '
'); + test_fragment( + '\n' + + ' \n' + + '
', + // -- output -- + '\n' + + ' \n' + + '
'); //============================================================ diff --git a/test/data/html/tests.js b/test/data/html/tests.js index f5bdbc64..5260f060 100644 --- a/test/data/html/tests.js +++ b/test/data/html/tests.js @@ -312,6 +312,11 @@ exports.test_data = { fragment: true, input: '', output: '' + }, + { + fragment: true, + input: '\n \n
', + output: '\n \n
' }] }, { name: "Attribute Wrap",