blob: c985d5667534530348b9acb11f02654ec392eabc (
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 = '';
document.getElementById('moz').value = '';
document.documentElement.className = '';
}
</script>
<body onload='loadHandler();'>
<input id='i' placeholder='foo' value='bar'>
<input id='moz' placeholder='bar' value='foo'>
</body>
</html>
|