blob: 31fc47b5faa0f45abe186ee0d518fe6bb68afeae [file] [log] [blame]
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<style>
target {
display: block;
height: 20px;
min-width: 20px;
float: left;
margin: 2px;
}
</style>
</head>
<body>
<p>In XHTML, attribute name matching is always case-sensitive.</p>
<p>If the test succeed, each block should be styled as described.</p>
<target style="background-color: green;">Green background color.</target>
<target style="color: blue;">Blue text.</target>
<target style="border: 2px dashed red;">Dashed red border.</target>
<target style="background-color: green;">Green background color.</target>
<target style="color: blue;">Blue text.</target>
<target style="border: 2px dashed red;">Dashed red border.</target>
<target style="background-color: green;">Green background color.</target>
<target style="color: blue;">Blue text.</target>
<target style="border: 2px dashed red;">Dashed red border.</target>
</body>
</html>