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