blob: 3e0b672ce0bedd131d029340f0d96edea1e30c38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!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.forms[0].reset();
document.documentElement.className = '';
}
</script>
<body onload='loadHandler();'>
<form>
<input id='i' placeholder='foo'>
<input id='moz' placeholder='bar'>
</form>
</body>
</html>
|