mirror of
https://github.com/servo/servo
synced 2026-05-13 02:17:06 +02:00
17 lines
495 B
XML
17 lines
495 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<title>Class selectors in an XML namespace</title>
|
|
<link rel="author" href="mailto:masonf@chromium.org" />
|
|
<body>
|
|
<p>The .class selector should work in any namespace. Both boxes should be green.</p>
|
|
<Boxes xmlns="http://foo">
|
|
<box>.classname selector</box>
|
|
<box>*[class~="classname"] selector</box>
|
|
</Boxes>
|
|
|
|
<style>
|
|
box {background:green;}
|
|
</style>
|
|
</body>
|
|
</html>
|