summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-placeholder/textarea/css-opacity.html
blob: 832f504eca426abf3f01b9c456606d14f4e075f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
  <link rel='stylesheet' type='text/css' href='style.css'>
  <style>
    textarea::-moz-placeholder,
    textarea::placeholder {
      opacity: 0.1;
    }
  </style>
  <body>
    <textarea placeholder='foo'></textarea>
    <textarea placeholder='bar'></textarea>
  </body>
</html>