blob: 8478786c12b99ac9eff351a8fe30392a029544d7 (
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 value='foo bar' type='hidden' id='i'>
<textarea id='l'></textarea>
</body>
</html>
|