Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-namespaces/prefix-001.xml - WPT Dashboard Interop Dashboard
<head>
<link rel="match" href="reference/ref-lime-1.xml"/>
<title>CSS Namespaces Test Suite: prefix case-sensitivity</title>
<style>
@namespace Foo "y";
@namespace foo "x";
test { background:red }
Foo|test { background:lime }
foo|test { background:red }
FOO|test { background:red }
</style>
</head>
<body>
<p><test xmlns="y">This sentence should have a green background.</test></p>
</body>
</html>