mirror of
https://github.com/servo/servo.git
synced 2025-07-10 00:43:39 +01:00
26 lines
No EOL
1.1 KiB
HTML
26 lines
No EOL
1.1 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Font-style and 'display: block' elements</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font-style">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-styling">
|
|
<link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-style-prop">
|
|
<link rel="match" href="reference/font-style-applies-to-001-ref.htm">
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content="The 'font-style' property applies to 'display: block' elements.">
|
|
<style type="text/css">
|
|
span
|
|
{
|
|
display: block;
|
|
font-style: italic;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the "Filler Text" below is slanted to one side.</p>
|
|
<div>
|
|
<span>Filler Text</span>
|
|
</div>
|
|
</body>
|
|
</html> |