https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 99f52b20b0191987ea4329d9bd144332329058cb authored by ffxbld on 05 February 2015, 09:51:43 UTC
Added FENNEC_35_0_1_RELEASE FENNEC_35_0_1_BUILD1 tag(s) for changeset fcb1debde639. DONTBUILD CLOSED TREE a=release
Tip revision: 99f52b2
placeholder-8.html
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <!-- Test: when focused, if value='', newest placeholder should be shown. -->
  <script type="text/javascript">
    function focusPlaceholder()
    {
      document.getElementById('p1').focus();
    }
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = 'my placeholder';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

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