summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-placeholder/textarea/css-display.html
blob: 717bfab7cd42581af6d53801c309d197b26d7d46 (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 {
      display: inline;
    }
  </style>
  <body>
    <textarea placeholder='foo'></textarea>
    <textarea placeholder='bar'></textarea>
  </body>
</html>