summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/box-shadow-currentcolor-ref.html
blob: 4bb4cbd4178090ef89be1133a069e22d21fd5fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Dan Glastonbury" href="mailto:dglastonbury@mozilla.com" />
    <style type="text/css">
     div {
         padding: 40px;
     }

     p {
         padding: 2em;
         border: 1px solid limegreen;
         box-shadow: 10px 5px 5px limegreen;
     }
    </style>
  </head>
  <body>
    <!-- content of test -->
    <div>
      <p style="color: limegreen">
          This box should have a green box shadow.
      </p>
    </div>
  </body>
</html>