summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-placeholder/input/css-opacity.html
blob: dd6e21ee1368747bd739cbb0011ff6e166b02150 (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>
    [placeholder="bar"]::-moz-placeholder,
    [placeholder="foo"]::placeholder {
      opacity: 0.1;
    }
  </style>
  <body>
    <input placeholder='foo'>
    <input placeholder='bar'>
  </body>
</html>