mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
681 B
HTML
24 lines
681 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<link rel='stylesheet' type='text/css' href='placeholder-style.css'>
|
|
<!-- Test: when focused, 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 disableReftestWait()
|
|
{
|
|
document.documentElement.className = '';
|
|
}
|
|
</script>
|
|
|
|
<body onload="focusPlaceholder();">
|
|
<input type="text" id="p1" value="" onfocus="setPlaceholder(); disableReftestWait();">
|
|
</body>
|
|
</html>
|