diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-11-06 12:56:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-06 13:56:03 +0100 |
commit | 64e887083aa67047f5ad37b9d55c418274b03ea3 (patch) | |
tree | 3b2b197ae350c6aa97a18ad9da7452269ba042a4 /tests/specs | |
parent | 5088b25f2315fa45e912377356a89ba2a44dbcda (diff) |
fix(fmt): don't use self-closing tags in HTML (#26754)
Closes https://github.com/denoland/deno/issues/26748
Diffstat (limited to 'tests/specs')
-rw-r--r-- | tests/specs/fmt/html/well_formatted.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/specs/fmt/html/well_formatted.html b/tests/specs/fmt/html/well_formatted.html index c0c06cd9b..7af705c04 100644 --- a/tests/specs/fmt/html/well_formatted.html +++ b/tests/specs/fmt/html/well_formatted.html @@ -1,4 +1,4 @@ -<div class="container">content</div> +<div class="container">content<br></div> <script> let counter = 0; |