summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/box-shadow/basic-shadows-2.html
blob: 0676e1006b3e7fa65104382790d88513c62ad964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html>
<head>
<style>
html {
    font: 10px Ahem;
    -webkit-font-smoothing: none;
}
</style>
</head>
<body>
  <div>Test for <a href="http://crbug.com/242624">issue 242624</a>: background-color on parent and child disables box-shadow.</div>
  <section style="background-color: #f0f0f0;box-shadow: 0 0 10px #000;">
    <div style="background-color: #fff;">
      This test should have a box shadow.
    </div>
  </section>
</body>
</html>