gecko/layout/reftests/text-overflow/standards-decorations-ref.html
Vitor Menezes ffab172cd7 Bug 403524: Merging codepaths introduced some reftest failures; we need to fix them (r=dbaron)
It would appear that shadows were expected to render above underlines,
violating the CSS3 spec for text-shadow
(http://dev.w3.org/csswg/css3-text/#text-shadow).  The text-overflow
reftest relied on our previous standards-mode decoration implementation,
which drew strikethroughs after drawing the contents of the box,
regardless of whether there was any text; the reference thus no longer
needs to artificially introduce the decoration.
2011-08-03 11:30:58 -07:00

73 lines
1.5 KiB
HTML

<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/licenses/publicdomain/
-->
<html><head>
<title>text-overflow: Standards mode text-decorations</title>
<style type="text/css">
@font-face {
font-family: Ahem;
src: url(../fonts/Ahem.ttf);
}
@font-face {
font-family: DejaVuSansMono;
src: url(../fonts/DejaVuSansMono.woff);
}
html,body {
color:black; background-color:white; font-size:16px; padding:0; margin:0; font-family:DejaVuSansMono;
}
.test {
overflow:hidden;
float:left;
height:2em;
white-space:pre;
margin-left:1em;
margin-bottom:1em;
font-size:20px;
color:blue;
}
span {
font-size:16px;
color:black;
}
.xspan {
text-decoration: line-through;
}
.t1 .xspan {
}
.rlo {
unicode-bidi: bidi-override; direction:rtl;
}
.lro {
unicode-bidi: bidi-override;
}
.rtl {
direction:rtl;
}
.ltr {
direction:ltr;
}
.t1 { width:7.3em;}
.t2 { width:20px;}
.t3 { width:22px;}
.t4 { width:1px; font-family:Ahem; }
.t3 span {margin-left:14px; }
m { font-size:20px; color:blue; }
</style>
</head><body>
<div class="test t1"><span><span class="xspan">0123&nbsp;56789012</span><m>&#x2026;</m></span></div>
<div class="test rtl t1"><span><span class="xspan">1&nbsp;56789012345</span><m>&#x2026;</m></span></div>
<div class="test rtl t2" style="color:black">&#x2026;&nbsp;</div>
<div class="test rtl t3"><span><m>&#x2026;</m><span style="visibility:hidden">&nbsp;</span></span></div>
<div class="test t4"><span><m>&#x2026;</m><span style="visibility:hidden">&nbsp;</span></span></div>
</body>
</html>