1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<!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-rule and overflow inside (complex test)</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-07-29 -->
<link rel="help" href="http://www.w3.org/TR/css3-multicol/#the-number-and-width-of-columns" title="3. The number and width of -moz-columns" />
<link rel="match" href="multicol-count-computed-003-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="This test checks that if one of 2 adjacent column boxes (2nd and 3rd colum box in this test) does not have any content, then the column rule separating those should not be drawn. In this test, the 3rd colum box should have no inline content. This test also checks that inline content in the normal flow that extends into a column gap should be clipped in the middle of the column gap. So, in this test, inline content in 1st column box should be partially clipped and overlapped partially by 1st -moz-column-rule." />
<style type="text/css"><![CDATA[
@font-face {
font-family: Ahem;
src: url("../../../fonts/Ahem.ttf");
}
]]></style>
<style type="text/css"><![CDATA[
div
{
background: yellow;
border: gray solid 1em;
color: black;
font: 1.25em/1 Ahem;
orphans: 1;
widows: 1;
width: 13em;
-moz-column-count: 3;
-moz-column-gap: 5em;
-moz-column-rule-color: blue;
-moz-column-rule-style: solid;
-moz-column-rule-width: 1.5em;
}
/*
(11) if (-moz-column-width = auto) and (-moz-column-count != auto) then
(12) N := -moz-column-count;
(13) W := max(0, (available-width - ((N - 1) * -moz-column-gap)) / N);
(14) exit;
So, the used -moz-column-count in this test is 3.
W := max(0, (available-width - ((N - 1) * -moz-column-gap)) / N);
W == max(0, (13em - ((3 - 1) * 5em)) / 3);
W == max(0, (13em - (2 * 5em)) / 3);
W == max(0, (13em - (10em)) / 3);
W == max(0, (3em) / 3);
W == max(0, 1em);
W == 1em;
So, the used -moz-column-width in this test is 1em.
*/
#pink {color: pink;}
#orange {color: orange;}
#purple {color: purple;}
#gray {color: gray;}
/*
Since
"
Content in the normal flow that extends into
column gaps (e.g., long words or images) is
clipped in the middle of the column gap.
"
http://www.w3.org/TR/css3-multicol/#overflow-inside-multicol-elements
this causes the right-half (0.5em) of the 'K' glyph to
be overlapped by the right-half (0.75em) of the 1st blue -moz-column-rule.
Same thing should happen to the 'N' glyph of 'ORAN'.
Because no inline content should be rendered into the
3rd column box, this causes the 2nd column rule not
been rendered because
"
Column rules are only drawn between two -moz-columns that
both have content.
"
http://www.w3.org/TR/css3-multicol/#column-gaps-and-rules
*/
]]></style>
</head>
<body>
<div>
<span id="pink">PINK</span>
<span id="orange">ORAN</span>
<span id="purple">PURP</span>
<span id="gray">GRAY</span>
</div>
</body>
</html>
|