summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-placeholder/input/placeholder-type-change-1.html
blob: 2eb0ea4d3e3759928a815bbc7cba4e1675fdd76a (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('i').type = 'text';
      document.getElementById('moz').type = 'text';
      document.documentElement.className = '';
    }
  </script>
  <body onload='loadHandler();'>
    <input type='button' id='i' placeholder='foo'>
    <input type='button' id='moz' placeholder='bar'>
  </body>
</html>