https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d5eac06c5c6713c017d2cab4c2e2b4fda866ae75 authored by ffxbld on 13 March 2012, 01:04:46 UTC
Added FIREFOX_11_0_RELEASE FIREFOX_11_0_BUILD2 tag(s) for changeset b967d9c07377. DONTBUILD CLOSED TREE a=release
Tip revision: d5eac06
placeholder-7.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: when focused, element should show placeholder. -->
  <script type="text/javascript">
    function focusPlaceholder()
    {
      document.getElementById('p1').focus();
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

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