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/reftests/bugs/97777-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/reftests/bugs/97777-2.html')
-rw-r--r-- | layout/reftests/bugs/97777-2.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/reftests/bugs/97777-2.html b/layout/reftests/bugs/97777-2.html new file mode 100644 index 000000000..b217588ac --- /dev/null +++ b/layout/reftests/bugs/97777-2.html @@ -0,0 +1,22 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd"> +<html> +<head> + <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> + <title>Bug 97777-2</title> + <style type="text/css"> + div.top {position: absolute; border: 0px; background: #CCCCCC} + div.sub {border: solid blue} + p {border: solid red} + </style> +</head> +<body> +<div class="top" style="top: 16.5em" align="center"> + <p style="float: left">Float</p> + <div class="sub" style="-moz-float-edge: margin-box">Should be shrink-wrapped [align="center", float-edge="margin-box"]</div> +</div> +<div class="top" style="top: 20.5em" align="center"> + <p style="float: right">Float</p> + <div class="sub" style="-moz-float-edge: margin-box">Should be shrink-wrapped [align="center", float-edge="margin-box"]</div> +</div> +</body> +</html> |