Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / text-overflow-ellipsis-anonymous-blocks-expected.html
blob096ea8037328d89797d27c357de96bd7f42d1df2
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>test: overflow: ellipis</title>
6 <style>
7 div { width: 50px; text-overflow:ellipsis; overflow:hidden; }
8 </style>
9 </head>
11 <body>
12 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=101879">Bug 101879</a>: This is a test from the <a href="http://www.w3.org/TR/css3-ui/#text-overflow">CSS 3 ui spec</a> that demonstates proper behavior for a nested block inside of a block that has text-overflow: ellipsis. The only string below that shouldn't have ellipeses is the "PARAGRAPH" string. (But it should be truncated because of overflow: hidden).</p>
13 <div style="border: 1px solid"> <div>NESTED</div> <p>PARAGRAPH</p> <div>WON'T</div> <div>ELLIPSE.</div> </div>
14 </body>
15 </html>