Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / 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 > h1 {
9                 margin-top: 0;
10         }
11         
12         #source{
13                 -webkit-flow-into: body;
14         }
15         
16         #region{
17                 -webkit-flow-from: body;
18         }
19         div{
20                 width:200px;
21                 height:200px;                   
22         }
23 </style>
24 <body>
25         <div id="source">
26                 <h1>&nbsp;</h1>
27         </div>
28         
29         <div id="region"></div>
30         <div>
31                 <h1>&nbsp;</h1>
32         </div>
33 </body>