haikuwebkit/LayoutTests/fast/css/list-outline.html

30 lines
395 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>The WebKit Open Source Project</title>
<style type="text/css" media="all">
ol.test li {
outline: 1px solid red;
padding: 1em;
}
</style>
</head>
<body>
<ol class="test">
<li >
A single outline should only appear over the list element, and not over internal text elements.
</li>
</ol>
</body>
</html>