596455-2b.html (391B)
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 style="display:none;" value='foo bar' type='text' id='i'> 12 <textarea id='l'></textarea> 13 </body> 14 </html>