https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7861638b06a23db62cf1b7e676a7374710dce7f1 authored by seabld on 13 February 2013, 14:13:12 UTC
Added tag SEAMONKEY_2_16b5_RELEASE for changeset FIREFOX_19_0b6_BUILD1. CLOSED TREE a=release
Tip revision: 7861638
placeholder-9.html
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <!-- Test: when focused, value reset should show placeholder. -->
  <script type="text/javascript">
    function focusPlaceholder()
    {
      document.getElementById('p1').focus();
    }
    function resetValue()
    {
      document.getElementById('p1').value = '';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

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