https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 162b63a813c1d8520882154b58254a2dbdae3709 authored by ffxbld on 16 January 2013, 15:19:02 UTC
Added FENNEC_19_0b2_RELEASE FENNEC_19_0b2_BUILD1 tag(s) for changeset 46305160fb3c. DONTBUILD CLOSED TREE a=release
Tip revision: 162b63a
placeholder-21.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').removeAttribute('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