mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>CSS Test: CSS: sanity tests for font inheritance</title>
|
|
<style type="text/css">
|
|
@page { font: italic 8pt sans-serif; color: gray;
|
|
margin: 7%;
|
|
counter-increment: page;
|
|
@top-left { content: "CSS Fonts Module Level 3 CR Test Suite"; }
|
|
@top-right { content: "Test font-size-115"; }
|
|
@bottom-right { content: counter(page); }
|
|
}
|
|
</style>
|
|
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
|
|
<link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/fonts/size/005.xml" type="application/xhtml+xml"/>
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-size-props"/>
|
|
<link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-size-prop"/>
|
|
<style type="text/css">
|
|
span { font: inherit; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>There should be two perfect columns of identical Xs below:</p>
|
|
<pre class="test"> XXX XXX
|
|
<span>XXX</span> XXX
|
|
XXX XXX </pre>
|
|
</body>
|
|
</html> |