1 <!DOCTYPE html>
2 <html><head><meta charset="utf-8">
3 <title>CSS Basic User Interface Test: text-overflow - inherit - inherit ellipsis value of parent's text-overflow property</title>
4 <link href="http://www.intel.com/" rel="author" title="Intel">
5 <link href="mailto:shiyoux.tan@intel.com" rel="author" title="Shiyou Tan">
6 <link href="http://www.w3.org/TR/css3-ui/#text-overflow" rel="help" title="8.2. Overflow Ellipsis: the 'text-overflow' property">
7 <link href="reference/text-overflow-002-ref.htm" rel="match">
8 <meta content="" name="flags">
9 <meta content="Test checks that text-overflow inherits the parent' ellipsis value when text-overflow set inherit" name="assert">
10 <style>
11 #container {
12 text-overflow: ellipsis;
13 }
14 #test {
15 font-size: 10px;
16 overflow: hidden;
17 text-overflow: inherit;
18 width: 150px;
19 }
20 span {
21 font-family: Ahem;
22 font-size: 30px;
23 }
24 </style>
25 </head><body>
26 <p>PREREQUISITE: The font used must have a glyph for the U+2026 character.</p>
27 <p>Test passes if there is an <strong>ellipsis</strong> after a black rectangle below.</p>
28 <div id="container">
29 <div id="test">
30 <span>TestChecksThatTheBrokenContentRepalcedByEllipsis</span>
31 </div>
32 </div>
33
34 </body></html>