summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/1174450-intrinsic-sizing-ref.html
blob: 3645fa00667be7a603f10668cb413ddc92ee82f7 (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
<!DOCTYPE HTML>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
  <meta charset="utf-8">
  <title>Testcase for bug 1174450</title>
  <style type="text/css">
body,html { color:black; background:white; font-size:12px; line-height:16px; padding:0; margin:0; }
	
div.v, div.h {
  display: block;
  position: relative;
  border: 1px dashed silver;
  width:74px;
  height:24px;
}
div.h {
  width:62px;
  height:61.2px;
}
.h span { 
  margin: 7px 13px 32px 12px;
  padding: 1px 3px 6px 19px;
}
.v span { 
  margin: 7px 13px 30px 5px;
  padding: 1px 3px 2px 7px;
}

span { 
  display: block;
  position: absolute;
  width: 30px;
  height: 10px;
  background: lime;
  border-width: 5px 9px 1px 7px;
  border-style: solid;
}

.a { position:absolute; }
.t2 {top:100px;}
.t3 {top:200px;}
.t4 {top:300px;}
  
  </style>
</head>
<body>


<div class="a t1">
<pre>vertical container, horizontal child</pre>
<div class="v"><span class="h"></span></div>
</div>
<div class="a t2">
<pre>vertical container, vertical child</pre>
<div class="v"><span class="v"></span></div>
</div>
<div class="a t3">
<pre>horizontal container, horizontal child</pre>
<div class="h"><span class="h"></span></div>
</div>
<div class="a t4">
<pre>horizontal container, vertical child</pre>
<div class="h"><span class="v"></span></div>
</div>

</body>
</html>