gecko/layout/reftests/forms/placeholder/placeholder-13.html

18 lines
494 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: placeholder shouldn't show new lines (\r version) -->
<script type="text/javascript">
function setPlaceholder()
{
document.getElementById('p1').placeholder = 'my\r placeholder';
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="setPlaceholder(); disableReftestWait();">
<input type="text" id="p1" value="" placeholder="">
</body>
</html>