Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / backgrounds / gradient-background-leakage-2.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <style type="text/css">
5     .box {
6       height: 50px;
7       width: 300px;
8       margin: 10px;
9       background-image: -webkit-linear-gradient(black, black);
10       border-radius: 25px;
11       border: 4px solid green;
12       transform: scale(0.25);
13     }
14   </style>
15 </head>
16 <body>
17   <!-- You should see no red leaking through the inner edge of the border. -->
18   <div style="background-color: red; height: 60px; width: 310px">
19     <div class="box"></div>
20   </div>
21 </body>
22 </html>