Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / backgrounds / gradient-background-leakage-2.html
blob559308c3cfacb2a9e3242509cc8b89807e7216b7
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);
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>