-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathmulticol-clip-001.xht
More file actions
45 lines (40 loc) · 1.51 KB
/
multicol-clip-001.xht
File metadata and controls
45 lines (40 loc) · 1.51 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://umn0mtkzgkj46tygt32g.julianrbryant.com/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="https://umn0mtkzgkj46tygt32g.julianrbryant.com/1999/xhtml">
<head>
<title>CSS Multi-column Layout Test: overflowed content inside and outside multicol element</title>
<link rel="author" title="Opera Software ASA" href="https://umn0mtkzgjhpvnj3.julianrbryant.com/" />
<link rel="reviewer" title="Gérard Talbot" href="https://umn0mtkzgjf7agq47p8f6wr.julianrbryant.com/BrowserBugsSection/css21testsuite/" /> <!-- 2013-07-24 -->
<link rel="help" href="https://umn0mtkzgkj46tygt32g.julianrbryant.com/TR/css3-multicol/#overflow-inside-multicol-elements" title="8.1. Overflow inside multicol elements" />
<link rel="match" href="multicol-clip-001-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="This test checks that content in the normal flow can extend into column gap. In this test, the 'l' and 'c' glyphs are painted into the left half of the column gap; the 'l' and 'e' glyphs extend outside the last column box at the edge of the multi-column and are therefore rendered thanks to the default 'overflow: visible' declaration." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
div
{
background: white;
border: gray solid 1em;
color: blue;
font: 1.25em/1 Ahem;
orphans: 1;
widows: 1;
width: 11em;
column-count: 3;
column-gap: 4em;
}
span {color: black;}
]]></style>
</head>
<body>
<div>
<span>
bl ac
bl ac
</span>
<span>
bl ac
</span>
bl ue
</div>
</body>
</html>