summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-placeholder/textarea/placeholder-value-set.html
blob: 30c3c26a4aff04e6987e731f6b03909f17acd2ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html class='reftest-wait'>
  <link rel='stylesheet' type='text/css' href='style.css'>
  <script>
    function loadHandler()
    {
      document.getElementById('t').value = 'bar';
      document.getElementById('moz').value = 'foo';
      document.documentElement.className = '';
    }
  </script>
  <body onload='loadHandler();'>
    <textarea id='t' placeholder='foo'></textarea>
    <textarea id='moz' placeholder='bar'></textarea>
  </body>
</html>