mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
638 B
HTML
23 lines
638 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<!-- Test: when focused, placeholder update shouldn't show placeholder. -->
|
|
<script type="text/javascript">
|
|
function focusPlaceholder()
|
|
{
|
|
document.getElementById('p1').focus();
|
|
}
|
|
function setPlaceholder()
|
|
{
|
|
document.getElementById('p1').placeholder = 'new placeholder';
|
|
}
|
|
function disableReftestWait()
|
|
{
|
|
document.documentElement.className = '';
|
|
}
|
|
</script>
|
|
|
|
<body onload="focusPlaceholder();">
|
|
<input type="text" id="p1" value="" placeholder="my placeholder" onfocus="setPlaceholder(); disableReftestWait();">
|
|
</body>
|
|
</html>
|