mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
22 lines
791 B
HTML
22 lines
791 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Alphabetic list wrapping</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#list-style">
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content="Alphabetic list wrapping does not exert unexpected behavior to a user.">
|
|
<style type="text/css">
|
|
ol
|
|
{
|
|
list-style-type: upper-alpha;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the letters "AA." are below.</p>
|
|
<ol start="27">
|
|
<li></li>
|
|
</ol>
|
|
</body>
|
|
</html> |