bug 692744 - reftest - text-shadow should not produce a shadow for space glyphs. r=jrmuizel

This commit is contained in:
Jonathan Kew 2011-10-12 22:29:42 +01:00
Родитель 68621d46ad
Коммит c1641570e3
3 изменённых файлов: 37 добавлений и 0 удалений

Просмотреть файл

@ -23,3 +23,7 @@ random-if(Android) == basic-negcoord.xul basic-negcoord-ref.xul
!= text-shadow-selected-1.html text-shadow-selected-1-notref.html
== text-shadow-selected-1.html text-shadow-selected-1-ref.html
# bug 692744
== text-shadow-on-space-1.html text-shadow-on-space-1-ref.html

Просмотреть файл

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
div {
font: 24px serif;
text-shadow: 2px 2px 1px red;
}
</style>
</head>
<body>
<div>
The spaces should not have shadows!
</div>
</body>

Просмотреть файл

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
div {
font: 24px serif;
text-shadow: 2px 2px 1px red;
}
</style>
</head>
<body>
<div>
The spaces should not have shadows!
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</div>
</body>