blob: 06678a3db900bf4906d7cf0b56dc637c9202b74d (
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">
<!-- Test: placeholder has to be used if set via javascript -->
<link rel='stylesheet' type='text/css' href='placeholder-style.css'>
<script type="text/javascript">
function setPlaceholder()
{
document.getElementById('p1').placeholder = "my placeholder";
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="setPlaceholder(); disableReftestWait();">
<textarea id="p1" placeholder=""></textarea>
</body>
</html>
|