diff options
| author | Johann Birnick <6528009+jbirnick@users.noreply.github.com> | 2025-01-06 05:13:53 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-06 13:13:53 +0000 |
| commit | 3a1503154f1162b594d2b016fb19506d9eeaf51e (patch) | |
| tree | 7f0dded67033297abb8970e1ac6cb08c6234dbb2 /tests/ref/html | |
| parent | 36508c66db184af3c4e620155810d1d768687481 (diff) | |
Basic HTML `heading` test (#5619)
Diffstat (limited to 'tests/ref/html')
| -rw-r--r-- | tests/ref/html/heading-html-basic.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/ref/html/heading-html-basic.html b/tests/ref/html/heading-html-basic.html new file mode 100644 index 00000000..69a1d017 --- /dev/null +++ b/tests/ref/html/heading-html-basic.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <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> + </body> +</html>
\ No newline at end of file |
