diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/generic/crashtests/810726-2.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
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 000000000..cf757b0e4 --- /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 { -moz-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> |