https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 0f85d5f245aa6149dd4a0440ed9978b551497b9c authored by ffxbld on 31 July 2012, 21:53:55 UTC
Added FENNEC_15_0b3_RELEASE FENNEC_15_0b3_BUILD1 tag(s) for changeset 0f180e96041b. DONTBUILD CLOSED TREE a=release
Tip revision: 0f85d5f
placeholder-13.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: placeholder shouldn't show new lines (\r version) -->
  <script type="text/javascript">
    function setPlaceholder()
    {
      document.getElementById('p1').placeholder = 'my\r placeholder';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>
  <body onload="setPlaceholder(); disableReftestWait();">
    <input type="text" id="p1" value="" placeholder="">
  </body>
</html>
back to top