blob: b8f26095eddfc5c815496333f3c4220eae0118b1 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test for intrinsic widths and text-indent</title>
<style type="text/css">
body { font-size: 12px; }
body > div, body > pre {
float: left; clear: left; margin: 1px; height: 2em;
border: medium solid;
}
</style>
</head>
<body>
<div style="width: 0"></div>
<div style="width: 2em"></div>
<div style="width: 0"></div>
<div style="width: 1em"></div>
<div style="width: 4em"></div>
<div style="width: 4em"></div>
<div style="width: 1em"></div>
<div style="width: 2em"></div>
<div style="width: 5em"></div>
<div style="width: 2em"></div>
</body>
</html>
|