summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/placeholder/placeholder-2.html
blob: 36b883ab258588b509d300382b4c0e4cad875751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: placeholder has to be used if set via javascript -->
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <script type="text/javascript">
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = "my placeholder";
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

  <body onload="setPlaceholder(); disableReftestWait();">
    <input type="text" id="p1" value="" placeholder="">
  </body>
</html>