https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 35750b5af6e8a37f0b3977df5b0f68407cf24f06 authored by ffxbld on 18 October 2016, 19:26:02 UTC
Added FENNEC_49_0_2_RELEASE FENNEC_49_0_2_BUILD1 tag(s) for changeset 3ba91f7c77a2. DONTBUILD CLOSED TREE a=release
Tip revision: 35750b5
placeholder-18.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: placeholder should appear with dynamic DOM modifications -->
  <script type="text/javascript">
    function setPlaceholder()
    {
      var i = document.getElementById('p1');
      i.focus();
      i.blur();
      i.value = "not empty";
      i.value = "";
      i.value = "my value";
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>
  <body onload="setPlaceholder(); disableReftestWait();">
    <input type="text" id="p1" value="" placeholder="my placeholder">
  </body>
</html>
back to top