<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>xhtml:class</title>
<style>
.nativeclass {
  color: orange;
}
.xhtmlclass {
  background-color: green;
}
</style>
</head>
<body xmlns:ns="http://www.example.com/"
    xmlns:xhtml="http://www.w3.org/1999/xhtml">
<h1><code><var>xhtml</var>:class</code></h1>

<ns:element xhtml:class="xhtmlclass" class="nativeclass">
The background of this text should be <em>GREEN</em>.
</ns:element>

</body>
</html>
