blob: ed27ecc7438977bba3045054e24012e03e6d484d [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>text-overflow</title>
</head>
<body>
<p>This test makes sure that the ellipsis disappears on the value when a text input is focused.</p>
<input type="text" style="text-overflow:clip" value="Lorem ipsum dolor sit amet, consectetur adipiscing elit" />
<script>
document.querySelector('input').focus();
</script>
</body>
</html>