summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-placeholder/css-simple-styling-ref.html
blob: eeaca440c93d0a9a575698d739bac7c0343e21a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
  <style>
    :-moz-any(input, textarea) {
      font: -moz-list;
      font-family: mono;
      font-style: italic;
      color: blue;
      word-spacing: 5px;
      text-shadow: 1px 1px 1px red;
    }
  </style>
  <body>
    <input value='foo bar'>
    <textarea>foo bar</textarea>
    <input value='bar foo'>
    <textarea>bar foo</textarea>
  </body>
</html>