mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
45 lines
No EOL
1.6 KiB
HTML
45 lines
No EOL
1.6 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 and 'display: inline-table' elements</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2012-12-15 -->
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#propdef-font">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-shorthand">
|
|
<link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-prop">
|
|
<link rel="match" href="reference/font-applies-to-001-ref.htm">
|
|
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content="The 'font' property applies to 'display: inline-table' elements.">
|
|
<style type="text/css">
|
|
#reference, #table
|
|
{
|
|
font: italic small-caps bold 16px sans-serif;
|
|
}
|
|
#table
|
|
{
|
|
display: inline-table;
|
|
}
|
|
.row
|
|
{
|
|
display: table-row;
|
|
}
|
|
.cell
|
|
{
|
|
display: table-cell;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the 2 lines of "Filler Text" match.</p>
|
|
<div id="reference">Filler Text</div>
|
|
<div id="table">
|
|
<div class="row">
|
|
<div class="cell">Filler Text</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="cell"> </div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |