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

Remove css-multicol/multicol-fill-auto.xht test with bogus ref.

It doesn't seem too interesting (given that we have other tests that
test column-fill:auto), and the reference it's paired with has nothing
to do with the test.

Bug: 788337
Change-Id: Ic98b339219bee74fe07ebfa5778869cdd2bfa28e
Reviewed-on: https://chromium-review.googlesource.com/806277Reviewed-by: default avatarPhilip Jägenstedt <foolip@chromium.org>
Commit-Queue: Morten Stenshorne <mstensho@chromium.org>
Cr-Commit-Position: refs/heads/master@{#521647}
parent 0ec0451c
......@@ -2435,7 +2435,6 @@ crbug.com/788337 external/wpt/css/css-multicol/multicol-block-no-clip-001.xht [
crbug.com/788337 external/wpt/css/css-multicol/multicol-block-no-clip-002.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-count-computed-003.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-count-computed-005.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-fill-auto.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-height-block-child-001.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-inherit-004.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-nested-column-rule-001.xht [ 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>multicolumn | column-fill-auto</title>
<meta name="assert" content="This test checks that columns are properly balanced when 'column-fill: auto' is set"/>
<link rel="author" title="howcome@opera.com" href="http://www.opera.com/"/>
<link rel="help" href="http://www.w3.org/TR/css3-multicol/#filling-columns"/>
<link rel="match" href="multicol-fill-ref.xht"/>
<meta name="flags" content="ahem"/>
<style type="text/css"><![CDATA[
body>div {
font-family: ahem;
font-size: 1.25em;
line-height: 1em;
color: green;
height: 3em;
width: 2em;
orphans: 1;
widows: 1;
position: relative;
margin: 1em;
}
div.col {
column-count: 2;
column-fill: auto;
column-gap: 0;
}
div.red {
background: red; position: absolute; z-index: -1;
}
]]></style>
</head>
<body>
<div class='col'>
<div class='red' style="top: 0; left: 0; height: 3em; width: 1em;"></div>
<div class='red' style="top: 0; left: 0; height: 1em; width: 2em;"></div>
o<br/>t<br/>
o<br/>t<br/>
</div>
<div class='ref'>
oo<br/>t<br/>o
</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>multicolumn | column-gap</title>
<link rel="author" title="Opera Software ASA" href="http://www.opera.com/"/>
<style type="text/css"><![CDATA[
div {
background: yellow;
height: 5em;
width: 30em;
}
]]></style>
</head>
<body>
<div></div>
</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