https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 68bba3abd53ee78d9996e00a47b9d024604d30bf authored by Ryan VanderMeulen on 29 July 2015, 14:12:35 UTC
Added tag B2G_2_0_END for changeset 2e6f1d4deff9 on a CLOSED TREE
Tip revision: 68bba3a
placeholder-2.html
<!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>
back to top