diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/list-item/numbering-4-ref.html | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
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> |