diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /layout/reftests/bugs/413840-background-unchanged-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/bugs/413840-background-unchanged-ref.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/layout/reftests/bugs/413840-background-unchanged-ref.html b/layout/reftests/bugs/413840-background-unchanged-ref.html new file mode 100644 index 0000000000..d412649ee2 --- /dev/null +++ b/layout/reftests/bugs/413840-background-unchanged-ref.html @@ -0,0 +1,36 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> +<html lang="en-US"> +<head> + <title>Test case for list items flowing around floats</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <meta http-equiv="Content-Style-Type" content="text/css"> + <style type="text/css"> + + ul, ol, li { margin-top: 0; margin-bottom: 0; } + li { height: 2em; background: aqua; color: black; } + + </style> +</head> +<body> + +<div style="background: aqua; color: black; margin-left: 40px"> +<div style="margin-left: -40px"> +<div style="margin-left: 60px"><ol start="1"><li>one</li></ol></div> +<div style="margin-left: 60px"><ol start="2"><li>two</li></ol></div> +<ol start="3"><li>three</li></ol> +<ol start="4"><li>four</li></ol> +</div> +</div> + +<div style="background: aqua; color: black; margin-left: 40px"> +<div style="margin-left: -40px"> +<div style="margin-left: 60px"><ul><li>one</li></ul></div> +<div style="margin-left: 60px"><ul><li>two</li></ul></div> +<ul><li>three</li></ul> +<ul><li>four</li></ul> +</div> +</div> + +</body> +</html> |