mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
29 lines
1.1 KiB
HTML
29 lines
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: List-style-image applied to elements with 'display' set to 'inline-block'</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-image">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#list-style">
|
|
<meta name="flags" content="image">
|
|
<meta name="assert" content="The 'list-style-image' property applies to elements with 'display' set to 'inline-block'.">
|
|
<style type="text/css">
|
|
div
|
|
{
|
|
display: inline-block;
|
|
list-style-image: url('support/blue15x15.png');
|
|
margin-left: 1in;
|
|
}
|
|
span
|
|
{
|
|
display: list-item;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there is a single blue square below.</p>
|
|
<div>
|
|
<span></span>
|
|
</div>
|
|
</body>
|
|
</html> |