https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2184b6756754ce9727f02b314ff13701993a5ac6 authored by ffxbld on 17 March 2017, 05:39:03 UTC
Added FENNEC_52_0_1_RELEASE FENNEC_52_0_1_BUILD1 tag(s) for changeset c2473a54d5d4. DONTBUILD CLOSED TREE a=release
Tip revision: 2184b67
placeholder-7.html
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <!-- 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