Files
servo/tests/wpt/css-tests/css21_dev/html4/reference/block-in-inline-insert-008-nosplit-ref.htm

25 lines
610 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>CSS Test Reference</title>
<link rel="match" href="reference/block-in-inline-insert-008-ref.htm">
<style type="text/css">
body > span { border: 3px solid blue }
.notstart { border-left: none; }
.notend { border-right: none; }
</style>
</head>
<body>
<span class="notend">
<span>One</span>
</span>
<div>Two</div>
<span class="notstart notend">
<span>Three</span>
</span>
<div>Four</div>
<span class="notstart">
<span>Five</span>
</span>
</body></html>