tenfourfox/dom/html/reftests/596455-1a.html

15 lines
371 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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 type='hidden' value='foo&#13;bar' id='i'>
<textarea id='l'></textarea>
</body>
</html>