tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / overflow / infiniteRecursion.html
1 <html>
2         <head>
3                 <style>
4                         div {
5                 font-family: "Lucida Grande";
6                 font-size: 10.5px;
7             }
8                         .gallery {
9                                 border: 10px solid red;
10                                 overflow:auto;
11                                 float:left;
12                         }
13                         .gallery img {
14                                 float:left;
15                                 margin-right:6px;
16                         }
17         </style>
18         </head>
19
20         <body>
21                 <div class="gallery">
22                         <img src="" width="86" height="66" />
23                         <div>x</div>
24                         <div>Ted and the miniature Teddy</div>
25                 </div>
26         </body>
27 </html>