Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / regions / last-region-border-radius-expected.html
1 <!doctype html>
2 <html>
3     <head>
4         <style>
5             #article {
6                 width: 50px;
7                 height: 100px;
8                 background-color: green;
9             }
10
11             #region {
12                 width: 50px;
13                 height: 50px;
14                 border: 5px solid blue;
15                 border-radius: 10px;
16                 position: absolute;
17                 top: 100px;
18                 left: 50px;
19             }
20         </style>
21     </head>
22     <body>
23         <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=103684"> [CSS Regions]  border-radius on a region causes overflow to be hidden</a>.</p>
24         <p>On success, you should not see any red below.</p>
25         <div id="region">
26             <div id="article"></div>
27         </div>
28     </body>
29 </html>