summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/overflow/infiniteRecursion.html
blob: deade283a5b4938830bbee928eedcc1c1892a628 (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
<html>
	<head>
		<style>
			div {
                font-family: "Lucida Grande";
                font-size: 10.5px;
            }
			.gallery {
				border: 10px solid red;
				overflow:auto;
				float:left;
			}
			.gallery img {
				float:left;
				margin-right:6px;
			}
	</style>
	</head>

	<body>
		<div class="gallery">
			<img src="" width="86" height="66" />
			<div>x</div>
			<div>Ted and the miniature Teddy</div>
		</div>
	</body>
</html>