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/w3c-css/received/css-multicol-1/multicol-fill-auto-block-children-002-ref.xht | |
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/w3c-css/received/css-multicol-1/multicol-fill-auto-block-children-002-ref.xht')
-rw-r--r-- | layout/reftests/w3c-css/received/css-multicol-1/multicol-fill-auto-block-children-002-ref.xht | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/layout/reftests/w3c-css/received/css-multicol-1/multicol-fill-auto-block-children-002-ref.xht b/layout/reftests/w3c-css/received/css-multicol-1/multicol-fill-auto-block-children-002-ref.xht new file mode 100644 index 000000000..f57fa4359 --- /dev/null +++ b/layout/reftests/w3c-css/received/css-multicol-1/multicol-fill-auto-block-children-002-ref.xht @@ -0,0 +1,79 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <title>CSS Reftest Reference</title> + <link rel="author" title="Opera Software ASA" href="http://www.opera.com/" /> + <link rel="reviewer" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2013-08-16 --> + <meta name="flags" content="" /> + <style type="text/css"><![CDATA[ + body {margin: 8px;} + + div + { + background-color: blue; + height: 200px; + width: 680px; + } + + h1 + { + color: white; + font-size: 2em; + line-height: 1.25; /* or 1.21875 to achieve a 39px tall line box */ + margin-top: 8px; /* The margin-top of body and h1 will collapse into an 8px gap */ + margin-bottom: 21px; + padding-top: 21px; + } + + span#pass + { + color: blue; + font-size: 1.5em; + font-weight: bolder; + left: 698px; + + /* + + Expected result: + + 8px 688px + v v + ************************************************ + * * + * <h1>Test passes if the word "PASS!" is<br />* 1st line box + * on the right ↘</h1> * 2nd line box + * * + ************************************************ + * * + * <h2>nbsp;<h2> <h2>nbsp;<h2> <h2>nbsp;<h2> * <h2>PASS!</h2> + * * + ************************************************ + ^ ^ + 228px 458px + + */ + + line-height: 1; + position: absolute; + top: 130px; + + /* + 8px : margin-top of body element + 21px : margin-top of h1 element which must not collapse with body's margin-top + 80px : content height: 2 line boxes required to render the "Test passes if ..." sentence + 21px : margin-bottom of h1 element + ==================================== + 130px : top position of span#pass in document box + */ + } + ]]></style> + </head> + <body> + + <div> + <h1>Test passes if "PASS!" is<br />on the right ↘</h1> + <span id="pass">PASS!</span> + </div> + + </body> +</html> |