blob: c2b1a0c015191345ca12186888af67e67cb7717c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html class='reftest-wait'>
<link rel='stylesheet' type='text/css' href='style.css'>
<script>
function loadHandler()
{
document.getElementById('i').value = 'bar';
document.getElementById('moz').value = 'foo';
document.documentElement.className = '';
}
</script>
<body onload='loadHandler();'>
<input id='i' placeholder='foo'>
<input id='moz' placeholder='bar'>
</body>
</html>
|