blob: 3461347a28e3be63d3b83ad53681c21260ec3bd1 (
plain)
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
|
<!DOCTYPE html>
<html lang="en" >
<meta charset="utf-8">
<title>CSS Test Reference</title>
<link rel='author' title='Elika J. Etemad' href='http://fantasai.inkedblade.net/contact'>
<style type='text/css'>
@import "/fonts/ahem.css";
.contain {
font: 20px/1 Ahem;
border: solid blue;
margin: 1em;
float: left; }
.control p {
white-space: pre-wrap;
}
p {
letter-spacing: 0;
margin: 0;
}
</style>
<div id='instructions'>Test passes if the pattern is identical in both blue boxes.</div>
<div class="contain control">
<!-- middle owned by containing block: simple -->
<p>AAA BBB</p>
<p>A A AB B B</p>
<!-- middle owned by containing block: double nesting -->
<p>AAAB B B</p>
<p>A A AB B B</p>
<!-- middle owned by inline: simple -->
<p>AAA BBB</p>
<p>A A AB B B</p>
<!-- middle owned by inline: double nesting -->
<p>AAAB B B</p>
<p>A A A B B B</p>
<!-- middle containing space -->
<p>AAA BBB</p>
<p>AAA B B B</p>
</div>
<div class="contain control">
<!-- middle owned by containing block: simple -->
<p>AAA BBB</p>
<p>A A AB B B</p>
<!-- middle owned by containing block: double nesting -->
<p>AAAB B B</p>
<p>A A AB B B</p>
<!-- middle owned by inline: simple -->
<p>AAA BBB</p>
<p>A A AB B B</p>
<!-- middle owned by inline: double nesting -->
<p>AAAB B B</p>
<p>A A A B B B</p>
<!-- middle containing space -->
<p>AAA BBB</p>
<p>AAA B B B</p>
</div>
|