diff options
| author | Laurenz <laurmaedje@gmail.com> | 2025-01-24 12:15:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-24 11:15:09 +0000 |
| commit | 467968af0788a3059e1bed47f9daee846f5b3904 (patch) | |
| tree | 2e3ba6e49cebcee28753cc2171907dba4bf36abf /tests/ref/html/heading-html-basic.html | |
| parent | cd044825fcb1651781f1dbcafac4dec8b216e370 (diff) | |
Tweak HTML pretty printing (#5745)
Diffstat (limited to 'tests/ref/html/heading-html-basic.html')
| -rw-r--r-- | tests/ref/html/heading-html-basic.html | 28 |
1 files changed, 7 insertions, 21 deletions
diff --git a/tests/ref/html/heading-html-basic.html b/tests/ref/html/heading-html-basic.html index 56b1e32b..54a22faf 100644 --- a/tests/ref/html/heading-html-basic.html +++ b/tests/ref/html/heading-html-basic.html @@ -5,26 +5,12 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> - <h2> - Level 1 - </h2> - <h3> - Level 2 - </h3> - <h4> - Level 3 - </h4> - <h5> - Level 4 - </h5> - <h6> - Level 5 - </h6> - <div role="heading" aria-level="7"> - Level 6 - </div> - <div role="heading" aria-level="8"> - Level 7 - </div> + <h2>Level 1</h2> + <h3>Level 2</h3> + <h4>Level 3</h4> + <h5>Level 4</h5> + <h6>Level 5</h6> + <div role="heading" aria-level="7">Level 6</div> + <div role="heading" aria-level="8">Level 7</div> </body> </html> |
