mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Border-width - Relation of thin, medium, and thick</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-06-26 -->
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-width-properties">
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content="A border-width set to thin is small than a border-width that is set to medium which is smaller than a border-width that is set to thick.">
|
|
<style type="text/css">
|
|
#thin
|
|
{
|
|
border-top: thin solid green;
|
|
height: 20px;
|
|
}
|
|
#medium
|
|
{
|
|
border-top: medium solid green;
|
|
height: 20px;
|
|
}
|
|
#thick
|
|
{
|
|
border-top: thick solid green;
|
|
height: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the three lines get thicker from top to bottom.</p>
|
|
<div id="thin"></div>
|
|
<div id="medium"></div>
|
|
<div id="thick"></div>
|
|
</body>
|
|
</html> |