https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ef57c404ca4faf989202d2b0a223b25f0817abb5 authored by Kannan Vijayan on 17 June 2013, 18:41:32 UTC
Bug 877287 - Disable running JS code when ion compiling. r=bhackett a=akeybl
Tip revision: ef57c40
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