summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/433700-ref.html
blob: 20b6eb324384918e2b5429bf68118003eb5f56b5 (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
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
94
95
<html><head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Testcase for bug 433700</title>
    <style type="text/css">

body { font-family: sans-serif; font-size: 16px; }

fieldset,legend { padding:0; margin:0; border-width:0; border-style:solid; }
fieldset { border-right:7px solid blue; font-size: 16px; }

#test1 { position:fixed; }
#test1 fieldset { background:lime;}
#test1 .legend  { margin-left:30px; background:pink; }

#test2 { position:fixed; top:3em; }
#test2 fieldset { background:lime; width:260px; }
#test2 .legend  { margin-left: 20px; background:pink; }

#test3 { position:fixed; top:6em; width:200px; }
#test3 fieldset { background:lime;}
#test3 .legend  { margin-left: 80px; background:pink; }

#test4 { position:fixed; top:9em; width:200px; }
#test4 fieldset { background:lime; width:260px; }
#test4 .legend  { margin-left: 80px; background:pink; }

#test5 { position:fixed; top:12em; width:200px; }
#test5 fieldset { background:lime;}
/* Percentage margins don't get counted in intrinsic width, so make sure that
   our fixed-size margins sum to 0, so they also do not affect intrinsic width
   either. */
#test5 .legend  { margin-left: 193px; background:pink; margin-right: -193px; }

#test6 { position:fixed; left:20px; top:15em; width:400px; }
#test6 fieldset { width:300px; }
#test6 fieldset div { position:relative; left:100px; padding-left:0px; width:200px; background:lime; }
#test6 legend  { margin-left:0; background:pink; }

fieldset div { padding-left:60px; }

.legend { display:block; }

    </style>
</head>
<body>

<div id="test1">
<fieldset>
<legend><span class="legend">LEGEND</span></legend>
<div>FIELDSET</div>
<script>var v = document.body.offsetHeight;</script>
</fieldset>
</div>

<div id="test2">
<fieldset>
<legend><span class="legend">LEGEND</span></legend>
<div>FIELDSET</div>
<script>var v = document.body.offsetHeight;</script>
</fieldset>
</div>

<div id="test3">
<fieldset>
<legend><span class="legend">LEGEND</span></legend>
<div>FIELDSET</div>
<script>var v = document.body.offsetHeight;</script>
</fieldset>
</div>

<div id="test4">
<fieldset>
<legend><span class="legend">LEGEND</span></legend>
<div>FIELDSET</div>
<script>var v = document.body.offsetHeight;</script>
</fieldset>
</div>

<div id="test5">
<fieldset>
<legend><span class="legend">LEGEND</span></legend>
<div>FIELDSET</div>
<script>var v = document.body.offsetHeight;</script>
</fieldset>
</div>

<div id="test6">
<fieldset>
<legend>LEGEND</legend>
<div>FIELDSET</div>
<script>var v = document.body.offsetHeight;</script>
</fieldset>
</div>

</body></html>