mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
622 B
HTML
20 lines
622 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<link rel='stylesheet' type='text/css' href='placeholder-style.css'>
|
|
<!-- Test: when focused, element should not placeholder when
|
|
'dom.placeholder.show_on_focus' pref is false. -->
|
|
<script type="text/javascript">
|
|
function focusPlaceholder()
|
|
{
|
|
document.getElementById('p1').focus();
|
|
}
|
|
function disableReftestWait()
|
|
{
|
|
document.documentElement.className = '';
|
|
}
|
|
</script>
|
|
|
|
<body onload="focusPlaceholder();">
|
|
<input type="text" id="p1" value="" placeholder="my placeholder" onfocus="disableReftestWait();">
|
|
</body>
|
|
</html> |