https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a098327828ae6c078eebb76a933e981b492761bb authored by ffxbld on 23 January 2013, 16:09:33 UTC
Added FENNEC_19_0b3_RELEASE FENNEC_19_0b3_BUILD1 tag(s) for changeset 44ad9c166d46. DONTBUILD CLOSED TREE a=release
Tip revision: a098327
placeholder-13.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: placeholder shouldn't show new lines (\r version) -->
  <link rel='stylesheet' type='text/css' href='placeholder-style.css'>
  <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