Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <!-- |
michael@0 | 3 | Any copyright is dedicated to the Public Domain. |
michael@0 | 4 | http://creativecommons.org/licenses/publicdomain/ |
michael@0 | 5 | --> |
michael@0 | 6 | <html><head> |
michael@0 | 7 | <meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
michael@0 | 8 | <title>Test text-overflow:ellipsis on table-cell</title> |
michael@0 | 9 | <style type="text/css"> |
michael@0 | 10 | @font-face { |
michael@0 | 11 | font-family: DejaVuSansMono; |
michael@0 | 12 | src: url(../fonts/DejaVuSansMono.woff); |
michael@0 | 13 | } |
michael@0 | 14 | html,body { |
michael@0 | 15 | color:black; background-color:white; font-size:16px; padding:0; margin:0; font-family:DejaVuSansMono; |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | |
michael@0 | 19 | .table { |
michael@0 | 20 | color: black; |
michael@0 | 21 | display: table; |
michael@0 | 22 | table-layout: fixed; |
michael@0 | 23 | height: 5em; |
michael@0 | 24 | width: 5em; |
michael@0 | 25 | } |
michael@0 | 26 | .row { |
michael@0 | 27 | display: table-row; |
michael@0 | 28 | } |
michael@0 | 29 | .cell { |
michael@0 | 30 | display: table-cell; |
michael@0 | 31 | white-space: nowrap; |
michael@0 | 32 | overflow: hidden; |
michael@0 | 33 | } |
michael@0 | 34 | </style> |
michael@0 | 35 | </head> |
michael@0 | 36 | <body> |
michael@0 | 37 | <div class="table"> |
michael@0 | 38 | <div class="row"> |
michael@0 | 39 | <div class="cell">|||||||…</div> |
michael@0 | 40 | </div> |
michael@0 | 41 | <div class="row"> |
michael@0 | 42 | <div class="cell"><span>|||||||…</span></div> |
michael@0 | 43 | </div> |
michael@0 | 44 | </div> |
michael@0 | 45 | </body></html> |