Mypal/dom/html/reftests/596455-2a.html
2019-03-11 13:26:37 +03:00

15 lines
391 B
HTML

<!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>