https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 8e5431214057227ccf23d550538941cadca59b3f authored by ffxbld on 11 September 2013, 02:36:52 UTC
Added FIREFOX_24_0esr_RELEASE FIREFOX_24_0esr_BUILD1 tag(s) for changeset c5fc2f003e4d. DONTBUILD CLOSED TREE a=release
Tip revision: 8e54312
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