Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/selectors/xml-class-selector.xml - WPT Dashboard Interop Dashboard
<?xml version="1.0" encoding="UTF-8"?>
<title>Class selectors in an XML namespace</title>
<link rel="author" href="mailto:masonf@chromium.org" />
<link rel="match" href="xml-class-selector-ref.xml" />
<body>
<p>The .class selector should work in any namespace. Both boxes should be green.</p>
<box class="green">.classname selector</box>
<box class="green2">*[class~="classname"] selector</box>
</Boxes>
<style>
box {background:red;}
.green {background: green;}
*[class~="green2"] {background: green;}
</style>
</body>
</html>