зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
678 B
HTML
24 строки
678 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<link rel='stylesheet' type='text/css' href='placeholder-style.css'>
|
|
<!-- Test: when focused, value reset should show placeholder. -->
|
|
<script type="text/javascript">
|
|
function focusPlaceholder()
|
|
{
|
|
document.getElementById('p1').focus();
|
|
}
|
|
function resetValue()
|
|
{
|
|
document.getElementById('p1').value = '';
|
|
}
|
|
function disableReftestWait()
|
|
{
|
|
document.documentElement.className = '';
|
|
}
|
|
</script>
|
|
|
|
<body onload="focusPlaceholder();">
|
|
<input type="text" id="p1" value="my value" placeholder="my placeholder" onfocus="resetValue(); disableReftestWait();">
|
|
</body>
|
|
</html>
|