no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / layout / reftests / text-overflow / table-cell-ref.html
blob9e905cf64e81ec4e7ed2c7536609d971964d2f35
1 <!DOCTYPE HTML>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/licenses/publicdomain/
5 -->
6 <html><head>
7 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
8 <title>Test text-overflow:ellipsis on table-cell</title>
9 <style type="text/css">
10 @font-face {
11 font-family: DejaVuSansMono;
12 src: url(../fonts/DejaVuSansMono.woff);
14 html,body {
15 color:black; background-color:white; font-size:16px; padding:0; margin:0; font-family:DejaVuSansMono;
19 .table {
20 color: black;
21 display: table;
22 table-layout: fixed;
23 height: 5em;
24 width: 5em;
26 .row {
27 display: table-row;
29 .cell {
30 display: table-cell;
31 white-space: nowrap;
32 overflow: hidden;
34 </style>
35 </head>
36 <body>
37 <div class="table">
38 <div class="row">
39 <div class="cell">|||||||&#x2026;</div>
40 </div>
41 <div class="row">
42 <div class="cell"><span>|||||||&#x2026;</span></div>
43 </div>
44 </div>
45 </body></html>