summaryrefslogtreecommitdiffstats
path: root/dom/html/reftests/596455-2a.html
blob: f78a36c6130ca384bcec12adaa9d59050e19d034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html class='reftest-wait'>
  <script>
    function onLoadHandler()
    {
      document.getElementById('l').value = document.getElementById('i').value;
      document.documentElement.className='';
    }
  </script>
  <body onload="onLoadHandler();">
    <input style="display:none;" type='text' value='foo&#13;bar' id='i'>
    <textarea id='l'></textarea>
  </body>
</html>