summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-placeholder/ignore-pseudo-class.html
blob: bd314c5b8fdc147af2aeabb84657e826b9a3e943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<style>
  :-moz-placeholder {
    color: red;
  }
  :placeholder {
    color: red;
  }
</style>
<body>
  <input placeholder='foobar'>
  <textarea placeholder='foobar'></textarea>
</body>
</html>