blob: 159d5d7e27b5326c955b8ba8e7ebe9cff9edcc61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: placeholder should appear with dynamic DOM modifications -->
<script type="text/javascript">
function setPlaceholder()
{
var i = document.getElementById('p1');
i.focus();
i.blur();
i.value = "not empty";
i.value = "";
i.value = "my value";
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="setPlaceholder(); disableReftestWait();">
<input type="text" id="p1" value="" placeholder="my placeholder">
</body>
</html>
|