layout/reftests/w3c-css/received/css3-namespace/syntax-011.xml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/w3c-css/received/css3-namespace/syntax-011.xml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,47 @@
     1.4 +<html xmlns="http://www.w3.org/1999/xhtml">
     1.5 + <head>
     1.6 +  <link rel="author" title="Anne van Kesteren" href="http://annevankesteren.nl/"/>
     1.7 +  <link rel="author" title="Opera Software ASA" href="http://opera.com/"/>
     1.8 +  <link rel="help" href="http://www.w3.org/TR/css3-namespace/#syntax"/>
     1.9 +  <link rel="match" href="reftest/ref-lime-6.xml"/>
    1.10 +  <title>CSS Namespaces Test Suite: string comparison (no URI resolving)</title>
    1.11 +  <style>
    1.12 +   @namespace url("http://example.com/");
    1.13 +   *|t { background:lime }
    1.14 +   t { background:red }
    1.15 +  </style>
    1.16 +  <style>
    1.17 +   @namespace url("http://example.com/");
    1.18 +   *|t2 { background:lime }
    1.19 +   t2 { background:red }
    1.20 +  </style>
    1.21 +  <style>
    1.22 +   @namespace url("HTTP://example.com/");
    1.23 +   *|t3 { background:lime }
    1.24 +   t3 { background:red }
    1.25 +  </style>
    1.26 +  <style>
    1.27 +   @namespace url("http://example.COM/");
    1.28 +   *|t4 { background:lime }
    1.29 +   t4 { background:red }
    1.30 +  </style>
    1.31 +  <style>
    1.32 +   @namespace url("%41");
    1.33 +   *|t5 { background:lime }
    1.34 +   t5 { background:red }
    1.35 +  </style>
    1.36 +  <style>
    1.37 +   @namespace url("A");
    1.38 +   *|t6 { background:lime }
    1.39 +   t6 { background:red }
    1.40 +  </style>
    1.41 + </head>
    1.42 + <body>
    1.43 +  <p><t xmlns="HTTP://example.com/">This sentence should have a green background.</t></p>
    1.44 +  <p><t2 xmlns="http://example.COM/">This sentence should have a green background.</t2></p>
    1.45 +  <p><t3 xmlns="http://example.com/">This sentence should have a green background.</t3></p>
    1.46 +  <p><t4 xmlns="http://example.com/">This sentence should have a green background.</t4></p>
    1.47 +  <p><t5 xmlns="A">This sentence should have a green background.</t5></p>
    1.48 +  <p><t6 xmlns="%41">This sentence should have a green background.</t6></p>
    1.49 + </body>
    1.50 +</html>

mercurial