Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / borders / border-radius-with-box-shadow.html
blob901d881898fa537b883c1c3e58abbe6be4eb3cf4
1 <!doctype html>
2 <head>
3 <style>
4 .fo_menu{
5 width: 549px;
6 height: 45px;
7 background-color: #000000;
8 border-top-left-radius: 130px 70px;
9 border-top-right-radius: 130px 70px;
10 margin:50ppx;
11 box-shadow: 0px 0px 1px 1px #000000;
13 </style>
14 <script>
15 if (window.testRunner)
16 testRunner.dumpAsTextWithPixelResults();
17 </script>
18 </head>
19 <body>
20 <!-- [bug 106404] https://bugs.webkit.org/show_bug.cgi?id=106404 -->
21 <!-- border-radius with box-shadow is not rendered correctly. -->
22 <!-- This test is for checking whether the above bug is correctly -->
23 <!-- fixed or not. -->
24 <div class="fo_menu">
25 </div>
26 </body>