https://github.com/mozilla/gecko-dev
Raw File
Tip revision: df357bb69dc9e4d205efd6ba5d15261fa1af7ee1 authored by ffxbld on 06 July 2011, 03:17:33 UTC
Added tag FIREFOX_6_0b1_BUILD1 for changeset 0d82a53ffaa6. CLOSED TREE a=release
Tip revision: df357bb
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