summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/selectors/xml-class-selector.xml
blob: 5666c0065d6262e0ca3c586d145a67e7f9c2a3cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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" />
  <link rel="help" href="https://dom.spec.whatwg.org/#dom-element-classname" />
  <link rel="help" href="https://crbug.com/649444" />
  <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>
    <Boxes xmlns="http://foo">
      <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>