https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a1c8c36082f39705c5002f978f6c3d2ded66e062 authored by ffxbld on 29 February 2012, 04:48:33 UTC
Added FIREFOX_11_0b5_RELEASE FIREFOX_11_0b5_BUILD1 tag(s) for changeset 8c9e4873d419. DONTBUILD CLOSED TREE a=release
Tip revision: a1c8c36
placeholder-2.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: placeholder has to be used if set via javascript -->
  <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