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/generic/crashtests/810726-2.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.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/generic/crashtests/810726-2.html')
-rw-r--r-- | layout/generic/crashtests/810726-2.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/layout/generic/crashtests/810726-2.html b/layout/generic/crashtests/810726-2.html new file mode 100644 index 0000000000..3fbaee5d52 --- /dev/null +++ b/layout/generic/crashtests/810726-2.html @@ -0,0 +1,57 @@ +<!DOCTYPE html> +<html> + <head> + <style type="text/css"> + body { + font-size: 0.875em; + line-height: 1.30em; + font-family: Arial; + } + + p, ul, li { + margin: 0; + padding: 0; + background-color: rgb(235, 235, 235); + } + + ul { column-count: 2; + background-color: rgb(255, 200, 200); + } + + li { margin-left: 17px } + .wrapper { + background-color: rgb(255, 0, 155); max-width: 910px; + border: 1px solid green; + } + + .column { + width: 73%; + padding: 20px 60px 20px 40px; + box-sizing: border-box; + background-color: rgb(0, 95, 255); + } + + .img { + float: left; + width: 261px; + height: 150px; + background-color: rgb(88, 20, 100); + } + </style> + </head> + <body> + <div class="wrapper"> + <div id="colEle" class="column"> + <ul> + <li> + <p>123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123</p> + </li> + <li> + <p>123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123</p> + <div class="img"></div> + </li> + </ul> + </div> + </div> + </body> +</html> |