summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/selectors/old-tests/css3-modsel-172b.xml
blob: ec93920fbb7618473719cce9d0fd1bad43e224d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>Namespaced attribute selectors</title>
  <style type="text/css"><![CDATA[
 @namespace url(http://css.example.net/);
 tests, tests * { display: block; color: green; }
 testA[|attribute] { color: red; }
 testB[|attribute="fail"] { color: red; }
 testC[|attribute~="fail"] { color: red; }
 testD[|attribute^="fail"] { color: red; }
 testE[|attribute*="fail"] { color: red; }
 testF[|attribute$="fail"] { color: red; }
 testG[|attribute|="fail"] { color: red; }
]]></style>
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
  <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
  <link rel="match" href="reference/seven-green-divs.xht"/>
  <meta name="flags" content=" namespace" />
 </head>
 <body>
  <tests xmlns="http://css.example.net/" xmlns:test="http://css.example.net/">
   <testA test:attribute="fail">This should be green.</testA>
   <testB test:attribute="fail">This should be green.</testB>
   <testC test:attribute="fail">This should be green.</testC>
   <testD test:attribute="fail">This should be green.</testD>
   <testE test:attribute="fail">This should be green.</testE>
   <testF test:attribute="fail">This should be green.</testF>
   <testG test:attribute="fail">This should be green.</testG>
  </tests>
</body>
</html>