layout/reftests/font-matching/CSS21-t1502-no-inherited-font-family.xhtml

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
michael@0 2 <html xmlns="http://www.w3.org/1999/xhtml">
michael@0 3 <head>
michael@0 4 <title>CSS 2.1: Font matching algorithm</title>
michael@0 5 <link rel="author" title="L. David Baron" href="http://dbaron.org/" />
michael@0 6 <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
michael@0 7 <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#algorithm" />
michael@0 8 <meta name="assert" content="That the 'UA-dependent default 'font-family'' described in step (5) does not vary based on the ancestor's font-family property." />
michael@0 9 </head>
michael@0 10 <body>
michael@0 11
michael@0 12 <div style="font-family: Arial, Helvetica, sans-serif">
michael@0 13 <div style="font-family: FontDoesNotExist">
michael@0 14 Every line of text in this page should be in the same font.
michael@0 15 </div>
michael@0 16 </div>
michael@0 17
michael@0 18 <div style="font-family: Arial, Helvetica">
michael@0 19 <div style="font-family: FontDoesNotExist">
michael@0 20 Every line of text in this page should be in the same font.
michael@0 21 </div>
michael@0 22 </div>
michael@0 23
michael@0 24 <div style="font-family: Arial">
michael@0 25 <div style="font-family: FontDoesNotExist">
michael@0 26 Every line of text in this page should be in the same font.
michael@0 27 </div>
michael@0 28 </div>
michael@0 29
michael@0 30 <div style="font-family: Times New Roman, Times, serif">
michael@0 31 <div style="font-family: FontDoesNotExist">
michael@0 32 Every line of text in this page should be in the same font.
michael@0 33 </div>
michael@0 34 </div>
michael@0 35
michael@0 36 <div style="font-family: Times New Roman, Times">
michael@0 37 <div style="font-family: FontDoesNotExist">
michael@0 38 Every line of text in this page should be in the same font.
michael@0 39 </div>
michael@0 40 </div>
michael@0 41
michael@0 42 <div style="font-family: Times New Roman">
michael@0 43 <div style="font-family: FontDoesNotExist">
michael@0 44 Every line of text in this page should be in the same font.
michael@0 45 </div>
michael@0 46 </div>
michael@0 47
michael@0 48 <div style="font-family: Courier New, Courier, monospace">
michael@0 49 <div style="font-family: FontDoesNotExist">
michael@0 50 Every line of text in this page should be in the same font.
michael@0 51 </div>
michael@0 52 </div>
michael@0 53
michael@0 54 <div style="font-family: Verdana">
michael@0 55 <div style="font-family: FontDoesNotExist">
michael@0 56 Every line of text in this page should be in the same font.
michael@0 57 </div>
michael@0 58 </div>
michael@0 59
michael@0 60 </body>
michael@0 61 </html>

mercurial