blob: 1867327903f29870c3ec2f35c80726aa36dbec6b (
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;" value='foo bar' type='text' id='i'>
<textarea id='l'></textarea>
</body>
</html>
|