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