summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform/830299-1-ref.html
blob: d5cf0071031cc32902ce26ae01c081f1429b6780 (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
<!DOCTYPE html>
<html lang="en-US">
<head>
	<title>Testcase, bug 830299</title>
	<meta charset=UTF-8>
	<style type="text/css">

	html { margin: 1px; padding: 2px }
	body { margin: 4px; padding: 8px }

	#outer {
		position: absolute;
		top: 3px; left: 5px;
		width: 200px; height: 200px;
		background: yellow;
	}
	
	#inner {
		position: absolute;
		top: 7px; left: 9px;
		width: 100px; height: 100px;
		background: aqua;
	}

	</style>
</head>
<body>

<div id="outer">
  <div id="inner">inner</div>
</div>

</body>
</html>