css3-box-shadow

the test passes if adding one or more shadow to the box

WeasyPrint

Reference (good) by WeasyPrint

Reference (good) by this browser

This browser

Source

 1 <!DOCTYPE html>
 2 <html><head>
 3   <meta charset="UTF-8">
 4   <title>CSS Box-shadow Test: the test passes if adding one or more shadow to the box</title>
 5   <link href="mailto:451887565@qq.com" rel="author" title="Xie Bing">
 6   <link href="mailto:shendayang@baidu.com" rel="reviewer" title="Dayang Shen"> <!-- 2013-09-03 -->
 7   <link href="http://www.w3.org/TR/css3-background/#the-border-width" rel="help">
 8   <link href="reference/css3-box-shadow-ref.htm" rel="match">
 9   <style type="text/css">
10     div{
11       width:300px;
12       height:100px;
13       background-color:#ff9900;
14       box-shadow:10px 10px black;
15     }
16   </style>
17 </head>
18 <body>
19   <p>The test passes if there is a black shadow behind the orange box.</p>
20   <div></div>
21 
22 
23 </body></html>