Commit afe06dbb authored by Morten Stenshorne's avatar Morten Stenshorne Committed by Commit Bot

Remove invalid multicol tall spanner tests.

The spec says the following about an object with column-span:all [1]:

"When space is limited, it may be impossible to find room for the
spanning element. In these cases, user agents may treat the element as
if none had been specified on this property."

So... user agents MAY? In other words, it's not a requirement, and
therefore we cannot test this.

[1] https://www.w3.org/TR/css-multicol-1/#column-span (and then scroll
down some)

Bug: 788337
Change-Id: I404a763397294c83c6611e3722f809cfa0f5a389
Reviewed-on: https://chromium-review.googlesource.com/822113Reviewed-by: default avatarRune Lillesveen <futhark@chromium.org>
Commit-Queue: Morten Stenshorne <mstensho@chromium.org>
Cr-Commit-Position: refs/heads/master@{#523403}
parent c54ff4dc
......@@ -2434,8 +2434,6 @@ crbug.com/788337 external/wpt/css/css-multicol/multicol-count-computed-005.xht [
crbug.com/788337 external/wpt/css/css-multicol/multicol-rule-004.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-rule-inset-000.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-rule-outset-000.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-span-all-child-001.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-span-all-child-002.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-span-all-margin-nested-002.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-span-float-001.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-fill-balance-001.xht [ Pass Failure ]
......
<!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-19 -->
<meta name="flags" content="" />
<style type="text/css"><![CDATA[
div#rel-pos-wrapper
{
background-color: blue;
font-size: 1.25em;
height: 10em;
position: relative;
width: 12em;
}
div > div {position: absolute;}
div#first-black
{
background-color: black;
left: 7em;
height: 1em;
top: 0em;
width: 5em;
}
div#first-yellow
{
background-color: yellow;
left: 7em;
height: 3em;
top: 1em;
width: 1em;
}
div#first-white
{
background-color: white;
left: 10em;
height: 9em;
top: 1em;
width: 2em;
}
div#second-black
{
background-color: black;
left: 2em;
height: 1em;
top: 2em;
width: 3em;
}
div#second-yellow
{
background-color: yellow;
left: 2em;
height: 3em;
top: 3em;
width: 1em;
}
div#third-black
{
background-color: black;
left: 2em;
height: 1em;
top: 6em;
width: 3em;
}
div#third-yellow
{
background-color: yellow;
left: 2em;
height: 3em;
top: 7em;
width: 1em;
}
div#second-white
{
background-color: white;
left: 5em;
height: 4em;
top: 6em;
width: 7em;
}
]]></style>
</head>
<body>
<div id="rel-pos-wrapper">
<div id="first-black"></div>
<div id="first-yellow"></div>
<div id="first-white"></div>
<div id="second-black"></div>
<div id="second-yellow"></div>
<div id="third-black"></div>
<div id="third-yellow"></div>
<div id="second-white"></div>
</div>
</body>
</html>
<!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: '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. '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 'column-span: all' as 'column-span: none'." />
<style type="text/css"><![CDATA[
body
{
color: black;
font: 1.25em/1 Ahem;
height: 10em;
orphans: 1;
widows: 1;
width: 10em;
column-count: 2;
column-fill: auto;
column-gap: 0em;
}
div
{
background-color: yellow;
border: blue solid 2em;
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
<!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-19 -->
<meta name="flags" content="" />
<style type="text/css"><![CDATA[
div#multi-column
{
background-color: black;
height: 8em;
width: 10em;
}
div#overflow
{
bottom: 8em;
font: 1em/1 serif;
margin-left: 10em;
position: relative;
}
]]></style>
</head>
<body>
<div id="multi-column"></div>
<div id="overflow">abc deg<br />ghk mno</div>
</body>
</html>
<!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: '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. '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-002-ref.xht" />
<meta name="flags" content="may" />
<meta name="assert" content="This test checks how spanning elements with block children is rendered inside a multi-column element with a set height which is insufficient for rendering both spanning elements entirely. Since available space (height of 8em) is insufficient to render both spanning elements (4 times 4em plus 2em) entirely inside the multi-column element, then UA may treat 'column-span: all' as 'column-span: none'." />
<style type="text/css"><![CDATA[
html {background-color: white;}
body
{
background-color: black;
height: 8em;
orphans: 1;
widows: 1;
width: 10em;
column-count: 2;
column-gap: 0em;
/*
N == 2;
W == 5em;
*/
}
div, p
{
font: 1em/1 serif;
margin-top: 0em;
column-span: all;
}
span
{
color: black;
display: block;
height: 4em;
width: 5em;
}
]]></style>
</head>
<body>
<div>
<span>FAIL</span>
<span>FAIL</span>
<span>FAIL</span>
<span>FAIL</span>
</div>
<p>abc deg ghk mno</p>
<!--
Expected results:
************************
|FAIL |FAIL |abc deg
| | |ghk mno
| | |
| | |
|FAIL |FAIL |
| | |
| | |
| | |
************************
The test presumes, postulates that
"abc deg" occupies not more than 5em.
-->
</body>
</html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment