https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 1003ec79451969335008880ad82e305d93b89642 authored by calbld on 03 January 2012, 16:37:36 UTC
Added tag CALENDAR_1_1_1_RELEASE for changeset 745b004fad4a. CLOSED TREE a=release
Tip revision: 1003ec7
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