https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9a61e3238155c4c758abaad19735e2746dd39047 authored by Marina Samuel on 30 May 2014, 13:45:41 UTC
Bug 995310 - Only create metro folder in metro environment. r=Yoric, a=lsblakk
Tip revision: 9a61e32
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