summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-placeholder/textarea/placeholder-value-unset.html
blob: aacea6a2039ece0bd6910b683390c67a61a5453b (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 = '';
      document.getElementById('moz').value = '';
      document.documentElement.className = '';
    }
  </script>
  <body onload='loadHandler();'>
    <textarea id='t' placeholder='foo'>bar</textarea>
    <textarea id='moz' placeholder='bar'>foo</textarea>
  </body>
</html>