blob: 36edb3e764f83378a0b2d22bac1b94a6d3b2e421 [file] [edit]
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test: text-overflow - string</title>
<link rel="author" title="Minseong Kim" href="mailto:jja08111@gmail.com">
<link rel="help" href="https://drafts.csswg.org/css-overflow-4">
<link rel="match" href="reference/text-overflow-string-001-ref.html">
<meta name="assert" content="Test checks that an string is shown instead of overflowing textual content">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
div {
font-family: monospace;
font-size: 10px;
overflow: hidden;
text-overflow: "123";
/* 120px for four Ahem glyphs + 3ch for the ellipsis string "123" which is
monospace. */
width: calc(120px + 3.1ch);
}
span {
font-family: Ahem;
font-size: 30px;
}
</style>
<body>
<p>Test passes if there is an <strong>123</strong> after a black rectangle below.</p>
<div>
<span>TestChecksThatTheBrokenContentRepalcedBy123</span>
</div>
</body>