https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 8f65d78aea7a1e4b942fdae0ec0b861937b0fe68 authored by ffxbld on 08 February 2012, 13:55:55 UTC
Added tag FENNEC_10_0_1_BUILD1 for changeset 976d144a254c. CLOSED TREE a=release
Tip revision: 8f65d78
placeholder-8.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: when focused, placeholder update shouldn't show placeholder. -->
  <script type="text/javascript">
    function focusPlaceholder()
    {
      document.getElementById('p1').focus();
    }
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = 'new 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