https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 5f34e7c5db22dfb8de4a1495972d16cbe93158ae authored by ffxbld on 26 August 2014, 19:23:57 UTC
Added FENNEC_32_0_RELEASE FENNEC_32_0_BUILD1 tag(s) for changeset 75cd19e6494d. DONTBUILD CLOSED TREE a=release
Tip revision: 5f34e7c
placeholder-22.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: when focused, clearing placeholder attribute should work. -->
  <script type="text/javascript">
    function focusPlaceholder()
    {
      document.getElementById('p1').focus();
    }
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = '';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

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