diff options
Diffstat (limited to 'layout/reftests/w3c-css/received/css-multicol-1/multicol-span-all-child-001.xht')
-rw-r--r-- | layout/reftests/w3c-css/received/css-multicol-1/multicol-span-all-child-001.xht | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/layout/reftests/w3c-css/received/css-multicol-1/multicol-span-all-child-001.xht b/layout/reftests/w3c-css/received/css-multicol-1/multicol-span-all-child-001.xht new file mode 100644 index 000000000..50896e563 --- /dev/null +++ b/layout/reftests/w3c-css/received/css-multicol-1/multicol-span-all-child-001.xht @@ -0,0 +1,59 @@ +<!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 Multi-column Layout Test: '-moz-column-span: all' element with block children (complex)</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-19 --> + <link rel="help" href="http://www.w3.org/TR/css3-multicol/#column-span" title="6.1. '-moz-column-span'" /> + <link rel="bookmark" title="[css3-multicol] spanning element with only block children" href="http://lists.w3.org/Archives/Public/www-style/2013Aug/0318.html" /> + <link rel="match" href="multicol-span-all-child-001-ref.xht" /> + <meta name="flags" content="ahem may" /> + <meta name="assert" content="This test checks how a spanning element with block children is rendered inside a multi-column element with a set height which is insufficient for rendering the entire spanning element. Since the available height (10em)is insufficient to render the spanning element (height needed: 3 times 4em) entirely inside the multi-column element, then UA may treat '-moz-column-span: all' as '-moz-column-span: none'." /> +<style type="text/css"><![CDATA[ +@font-face { + font-family: Ahem; + src: url("../../../fonts/Ahem.ttf"); +} +]]></style> + <style type="text/css"><![CDATA[ + body + { + color: black; + font: 1.25em/1 Ahem; + height: 10em; + orphans: 1; + widows: 1; + width: 10em; + + -moz-column-count: 2; + -moz-column-fill: auto; + -moz-column-gap: 0em; + } + + div + { + background-color: yellow; + border: blue solid 2em; + + -moz-column-span: all; + } + + span + { + display: block; + height: 4em; + width: 5em; + } + ]]></style> + </head> + + <body> + + <div> + <span>block</span> + <span>block</span> + <span>block</span> + </div> + + </body> +</html>
\ No newline at end of file |