mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-20 10:33:36 +00:00
15 lines
371 B
HTML
15 lines
371 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 type='hidden' value='foo bar' id='i'>
|
|
<textarea id='l'></textarea>
|
|
</body>
|
|
</html>
|