tizen beta release
[profile/ivi/webkit-efl.git] / LayoutTests / fast / regions / outline-sides-in-region.html
1 <!-- this test should display two identical yellow squares -->
2 <style type="text/css">
3         
4         h1{
5                 outline: 5px solid yellow;
6         }
7         
8         #source{
9                 -webkit-flow-into: body;
10         }
11         
12         #region{
13                 -webkit-flow-from: body;
14         }
15         div{
16                 width:200px;
17                 height:200px;                   
18         }
19 </style>
20 <body>
21         <div id="source">
22                 <h1>&nbsp;</h1>
23         </div>
24         
25         <div id="region"></div>
26         <div>
27                 <h1>&nbsp;</h1>
28         </div>
29 </body>