diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/list-item/numbering-4-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/list-item/numbering-4-ref.html')
-rw-r--r-- | layout/reftests/list-item/numbering-4-ref.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/layout/reftests/list-item/numbering-4-ref.html b/layout/reftests/list-item/numbering-4-ref.html new file mode 100644 index 0000000000..4fcb6e194f --- /dev/null +++ b/layout/reftests/list-item/numbering-4-ref.html @@ -0,0 +1,52 @@ +<!DOCTYPE HTML> +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> + <title>Reference for testcase #2 for bug 1171419</title> +<style> +l { display:block; list-style: decimal inside; } +</style> +</head> +<body> + +<ol style="display:flex; list-style-type:none"> + <l start="1"><li style="overflow: hidden">List item 1</li></l> + <l start="2"><li style="overflow: hidden">List item 2</li></l> + <l start="3"><li>List item 3</li></l> + <l start="4"><li style="overflow: hidden">List item 4</li></l> + <l start="5"><li style="overflow: hidden">List item 5</li></l> + <l start="6"><li>List item 6</li></l> + <l start="7"><li>List item 7</li></l> +</ol> + +<ol style="display:flex; list-style-type:none"> +<div> + <l start="1"><li style="overflow: hidden">List item 1</li></l> + <l start="2"><li style="overflow: hidden">List item 2</li></l> + <l start="3"><li>List item 3</li></l> +</div> +</ol> + +<ol style="display:flex; list-style-type:none"> +<div style="display:flex"> + <l start="1"><li style="overflow: hidden">List item 1</li></l> + <l start="2"><li style="overflow: hidden">List item 2</li></l> + <l start="3"><li>List item 3</li></l> +</div> +</ol> + +<ol style="display:inline-flex; list-style-type:none"> +<div style="display:flex"> + <l start="1"><li style="overflow: hidden">List item 1</li></l> + <l start="2"><li style="overflow: hidden">List item 2</li></l> + <l start="3"><li>List item 3</li></l> +</div> +</ol> + +<ol style="display:flex; list-style-type:none"> + <l start="1"><li style="column-width:1em;">item1</li></l> + <l start="2"><li style="column-width:1em;">item2</li></l> + <l start="3"><li style="column-width:1em;">item3</li></l> +</ol> + +</body> +</html> |