Source code
Revision control
Copy as Markdown
Other Tools
<head>
<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>