- From: Gérard Talbot <css21testsuite@gtalbot.org>
- Date: Thu, 14 Mar 2013 22:51:00 -0400
- To: "Taka" <takaoshiyama@gmail.com>
- Cc: "Public CSS test suite mailing list" <public-css-testsuite@w3.org>
Taka,
http://test.csswg.org/source/contributors/east-tokyo/submitted/css3-text/emphasis-black.png
http://test.csswg.org/source/contributors/east-tokyo/submitted/css3-text/emphasis-blue.png
should be in the /support/ folder, in
http://test.csswg.org/source/contributors/east-tokyo/submitted/css3-text/support/
-----------
http://test.csswg.org/source/contributors/east-tokyo/submitted/css3-text/text-decoration-line-010.xht
http://test.csswg.org/source/contributors/east-tokyo/submitted/css3-text/text-decoration-line-011.xht
http://test.csswg.org/source/contributors/east-tokyo/submitted/css3-text/text-decoration-line-012.xht
http://test.csswg.org/source/contributors/east-tokyo/submitted/css3-text/text-decoration-line-013.xht
http://test.csswg.org/source/contributors/east-tokyo/submitted/css3-text/text-decoration-line-014.xht
Please change/replace
@font-face
{
font-family: "DejaVuSerifBook";
src: url("support/DejaVuSerif-webfont.woff") format("woff"); /*
Filesize: 18096 bytes (17.7 KBytes) */
}
in all those tests to/with:
@font-face
{
font-family: "DejaVu Serif";
src: local("DejaVu Serif"),
url("support/DejaVuSerif-webfont.woff") format("woff"),
url("support/DejaVuSerif-webfont.eot") format("embedded-opentype"),
url("support/DejaVuSerif-webfont.ttf") format("truetype");
/*
Filesize of DejaVuSerif-webfont.woff: 18096 bytes (17.7 KBytes);
Filesize of DejaVuSerif-webfont.eot: 29046 bytes (28.4 KBytes)
Filesize of DejaVuSerif-webfont.ttf: 28856 bytes (28.2 KBytes);
These DejaVuSerif-webfont.ext are subset to English only
(128 characters) and use version 2.29 (2010-12-23).
DejaVu Serif version 2.33 (2011-02-27) is downloadable at
http://dejavu-fonts.org/wiki/Download
*/
}
and then make sure you put
DejaVuSerif-webfont.woff ,
DejaVuSerif-webfont.eot
and
DejaVuSerif-webfont.ttf in your support folder, here:
http://test.csswg.org/source/contributors/east-tokyo/submitted/css3-text/support/
Those DejaVuSerif-webfont.woff, DejaVuSerif-webfont.eot and
DejaVuSerif-webfont.ttf are in
http://www.gtalbot.org/BrowserBugsSection/review/support/
copy those, import those in your
http://test.csswg.org/source/contributors/east-tokyo/submitted/css3-text/support/
I probably will/may need to redo the image in
http://www.gtalbot.org/BrowserBugsSection/review/text-orientation-mixed-001-review-ref.xht
as I can see that the "e" glyph is different from
http://www.gtalbot.org/BrowserBugsSection/review/text-orientation-mixed-001-review.xht
Some explanations
-----------------
src: local("DejaVu Serif") means that if the font exists under such
name, then the browser should use it and should not download anything.
Otherwise it will download the .woff file. If the browser does not
support .woff, then it will try the .eot file (Internet Explorer
supports this). Otherwise it will download and use the .ttf file.
DejaVu Serif license is excellent for free use and embeddability and is
being maintained under a sourceforge.net project.
One drawback with DejaVu Serif is that it does not support Japanese glyphs.
Gérard
--
Contributions to the CSS 2.1 test suite:
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/
CSS 2.1 Test suite RC6, March 23rd 2011:
http://test.csswg.org/suites/css2.1/20110323/html4/toc.html
CSS 2.1 test suite harness:
http://test.csswg.org/harness/
Contributing to to CSS 2.1 test suite:
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/web-authors-contributions-css21-testsuite.html
Received on Friday, 15 March 2013 02:51:34 UTC