layout/reftests/text/font-selection-fallback-1-ref.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/text/font-selection-fallback-1-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,42 @@
     1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
     1.5 +	"http://www.w3.org/TR/html4/strict.dtd">
     1.6 +<html lang="en">
     1.7 +<head>
     1.8 +	<title>Reference for test that language support doesn't override
     1.9 +	specified family - Bug 678561</title>
    1.10 +	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    1.11 +	<style type="text/css">
    1.12 +
    1.13 +	@font-face {
    1.14 +		font-family: "MarkA";
    1.15 +		src: url(../fonts/markA.ttf);
    1.16 +	}
    1.17 +	@font-face {
    1.18 +		font-family: "MarkB";
    1.19 +		src: url(../fonts/markB.ttf);
    1.20 +	}
    1.21 +	@font-face {
    1.22 +		font-family: "DejaVu Sans Mono";
    1.23 +		src: url(../fonts/DejaVuSansMono.otf);
    1.24 +	}
    1.25 +
    1.26 +	.c1 { font-family: MarkA; }
    1.27 +	.c2 { font-family: MarkB; }
    1.28 +	.c3 { font-family: DejaVu Sans Mono; }
    1.29 +
    1.30 +        /* to ensure the same vertical positioning of the text */
    1.31 +        .spacer { line-height: 3em }
    1.32 +	</style>
    1.33 +</head>
    1.34 +<body>
    1.35 +
    1.36 +<p><span class="c1">A</span></p>
    1.37 +<p><span class="c2">B</span><span class="spacer"></span></p>
    1.38 +<p><span class="c3">C</span><span class="spacer"></span></p>
    1.39 +
    1.40 +<p class="c3">A</p>
    1.41 +<p class="c3">B</p>
    1.42 +<p class="c3">C</p>
    1.43 +
    1.44 +</body>
    1.45 +</html>

mercurial