Source code

Revision control

Copy as Markdown

Other Tools

<head>
<link rel="author" title="Daniel Glazman" href="http://glazman.org/"/>
<link rel="author" title="Disruptive Innovations SAS" href="http://disruptive-innovations.com/"/>
<title>CSS Namespaces Test Suite: @namespace and other rules ordering</title>
<style>
@namespace test url("test");
@media all {
test|test { background-color: lime; }
}
@namespace test2 url("test");
test2|test { background: red }
</style>
</head>
<body>
<p>
<test xmlns="test">This sentence should have a green
background.</test>
</p>
</body>
</html>