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

Remove multicol-span-all-margin-nested-003.xht.

It's unclear what it attempted to test. The file name suggests something
with margins, but there are no margins in the test. Furthermore, the ref
assumes a buggy intrinsic width calculation: There are four words of
column content. The max-content-width should be so that the multicol container
can hold all the four words on the same line. There are four columns too, so
the multicol container actually has to be rather wide.

If column-gap is 1em and each character and non-collapsable whitespace
also is 1em wide, the width of the line of text will be 4+1+4+1+4+1+4em
= 19em. That's the column width we want. But we have 4 columns, so
multiply that by 4 -> 76em. Add the 3 gaps between the 4 columns ->
79em. I.e. 1264px if the font-size is 16px. The ref assumes way less
than that (22em).

Bug: 788337
Change-Id: I076af29bf53914557c40b5e438b5eebfb8439e42
Reviewed-on: https://chromium-review.googlesource.com/811645Reviewed-by: default avatarIan Kilpatrick <ikilpatrick@chromium.org>
Reviewed-by: default avatarEmil A Eklund <eae@chromium.org>
Commit-Queue: Morten Stenshorne <mstensho@chromium.org>
Cr-Commit-Position: refs/heads/master@{#522164}
parent e5c484dd
...@@ -2420,7 +2420,6 @@ crbug.com/788337 external/wpt/css/css-multicol/multicol-rule-outset-000.xht [ Fa ...@@ -2420,7 +2420,6 @@ crbug.com/788337 external/wpt/css/css-multicol/multicol-rule-outset-000.xht [ Fa
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-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-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-all-margin-nested-002.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-span-all-margin-nested-003.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-span-float-001.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-table-cell-vertical-align-001.xht [ Failure ] crbug.com/788337 external/wpt/css/css-multicol/multicol-table-cell-vertical-align-001.xht [ Failure ]
crbug.com/788337 external/wpt/css/css-multicol/multicol-width-ems-001.xht [ Failure ] crbug.com/788337 external/wpt/css/css-multicol/multicol-width-ems-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>multicolomn | column-span inside block</title>
<link rel="author" title="Opera Software ASA" href="http://www.opera.com/"/>
<link rel="help" href="http://www.w3.org/TR/css3-multicol/#spanning-columns"/>
<link rel="match" href="multicol-span-all-margin-nested-3-ref.xht"/>
<meta name="flags" content="ahem"/>
<style type="text/css"><![CDATA[
body>div {
font-family: ahem;
font-size: 1em;
line-height: 1em;
color: black;
background: black;
position: absolute;
orphans: 1;
widows: 1;
column-count: 4;
}
#spanned {
column-span: all;
}
]]></style>
</head>
<body>
<div>
<div>
<div id="spanned">x</div>
</div>
FAIL FAIL FAIL FAIL
</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>multicolomn | column-span inside block</title>
<link rel="author" title="Opera Software ASA" href="http://www.opera.com/"/>
<style type="text/css"><![CDATA[
body>div {
background: black;
width: 22em;
height: 2em;
position: absolute;
}
]]></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