596455-1a.html 371 B

123456789101112131415
  1. <!DOCTYPE html>
  2. <html class='reftest-wait'>
  3. <script>
  4. function onLoadHandler()
  5. {
  6. document.getElementById('l').value = document.getElementById('i').value;
  7. document.documentElement.className='';
  8. }
  9. </script>
  10. <body onload="onLoadHandler();">
  11. <input type='hidden' value='foo&#13;bar' id='i'>
  12. <textarea id='l'></textarea>
  13. </body>
  14. </html>