https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 3916eb4d0f5f0ac852ac6e2972eebf8a3b629d1f authored by ffxbld on 09 November 2011, 17:57:19 UTC
Added tag FIREFOX_9_0b1_BUILD1 for changeset efc25177ab2d. CLOSED TREE a=release
Tip revision: 3916eb4
placeholder-5.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: placeholder has to be shown if value is reseted via javascript -->
  <script type="text/javascript">
    function setValue()
    {
      document.getElementById('p1').value = "";
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

  <body onload="setValue(); disableReftestWait();">
    <input type="text" id="p1" value="my value" placeholder="my placeholder">
  </body>
</html>
back to top