mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
753 B
HTML
27 lines
753 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<!-- Test: when unfocused, if value='', newest placeholder should be shown -->
|
|
<script type="text/javascript">
|
|
function focusPlaceholder()
|
|
{
|
|
document.getElementById('p1').focus();
|
|
}
|
|
function setPlaceholder()
|
|
{
|
|
document.getElementById('p1').placeholder = 'my placeholder';
|
|
}
|
|
function unFocusPlaceholder()
|
|
{
|
|
document.getElementById('p1').blur();
|
|
}
|
|
function disableReftestWait()
|
|
{
|
|
document.documentElement.className = '';
|
|
}
|
|
</script>
|
|
|
|
<body onload="focusPlaceholder();">
|
|
<input type="text" id="p1" value="" placeholder="old placeholder" onfocus="setPlaceholder(); unFocusPlaceholder(); disableReftestWait();">
|
|
</body>
|
|
</html>
|