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/379349-2a.xhtml | |
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/379349-2a.xhtml')
-rw-r--r-- | layout/reftests/bugs/379349-2a.xhtml | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/layout/reftests/bugs/379349-2a.xhtml b/layout/reftests/bugs/379349-2a.xhtml new file mode 100644 index 000000000..efecf7398 --- /dev/null +++ b/layout/reftests/bugs/379349-2a.xhtml @@ -0,0 +1,85 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>CSS3 Multi-column Layout Test Suite: Overflow Pagination (Interlaced [Simplified])</title> + <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/> + <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#the-height-property"/> + <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#length-units"/> + <style type="text/css"> + body, html { + margin: 0; + padding: 0; + } + .container { + height: .5in; + } + .overflow { + border-bottom: solid 4px red; + } + .following { + margin: 0 0 .5in; + height: .5in; + background: white; + + font-size: 10pt; + line-height: 10pt; + color: navy; + } + .fno1 { + margin: 0; + border-top: 4px solid blue; + } + .no1 .overflow { + height: 800%; + } + .no2 .overflow { + height: 1200%; + } + .no3 .overflow { + height: 600%; + border-bottom-color: blue; + } + .no4 .overflow { + height: 800%; + border-bottom-color: blue; + } + body { + height: 2.5in; + width: 300pt; + -moz-column-width: 100pt; + -moz-column-gap: 0; + -moz-column-fill: auto; + border: solid gray; + } + </style> + </head> + <body> + <div class="container no1"> + <div class="overflow"> + </div> + </div> + <div class="container no2"> + <div class="overflow"> + </div> + </div> + <div class="container no3"> + <div class="overflow"> + </div> + </div> + <div class="following"> + <p class="fno1"> + This paragraph must be in the first column. + There must be no red on any page. + </p> + </div> + <div class="container no4"> + <div class="overflow"> + </div> + </div> + <p class="following"> + This paragraph must be in the second column. + There must be an unbroken blue line across + all three columns. + </p> + </body> +</html> |