Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-ui/text-overflow-string-006.tentative.html - WPT Dashboard Interop Dashboard
 
 
<!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="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>