Index: sky/tests/layout/ellipsis.sky |
diff --git a/sky/tests/layout/ellipsis.sky b/sky/tests/layout/ellipsis.sky |
index 08288a42a0e0d5019a87b30ccfb92bd4351e1f76..96f99183110edd2d3ae035d201d6dd5be41118fe 100644 |
--- a/sky/tests/layout/ellipsis.sky |
+++ b/sky/tests/layout/ellipsis.sky |
@@ -1,16 +1,8 @@ |
<sky> |
<import src="../resources/dump-as-render-tree.sky" /> |
<style> |
- div { |
- width: 50px; |
- text-overflow: ellipsis; |
- overflow: hidden; |
- white-space: nowrap; |
- border: 3px solid blue; |
- } |
p { |
width: 50px; |
- display: paragraph; |
text-overflow: ellipsis; |
overflow: hidden; |
white-space: nowrap; |
@@ -20,6 +12,6 @@ |
display: inline; |
} |
</style> |
- <div>These lines <p>should</p> all ellipsize. </div> |
+ <p>These lines <p>should</p> all ellipsize. </p> |
<p><span>As should this.</span></p> |
</sky> |