Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test: text-overflow with bidi string ellipsis</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-006.tentative-ref.html">
<meta name="assert" content="Test checks that ellipsis string has bidirectional text.">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
div {
font-size: 10px;
overflow: hidden;
text-overflow: "שלום 1234";
width: 150px;
}
span {
font-family: Ahem;
font-size: 30px;
}
</style>
<body>
<p>Test passes if there is an "<strong>שלום 1234</strong>" after a black rectangle below.</p>
<div>
<span>TestChecksThatTheBrokenContentRepalcedByBidiText</span>
</div>
</body>