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