mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-24 09:32:53 +00:00
23 lines
600 B
HTML
23 lines
600 B
HTML
<!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>
|